From 8512066fb652b2278c3b96b580b02545dcc1491e Mon Sep 17 00:00:00 2001 From: Saad Najmi Date: Wed, 29 Jan 2025 14:17:12 -0800 Subject: [PATCH] undo most of changes to framework tsconfig --- packages/framework/framework/tsconfig.json | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/packages/framework/framework/tsconfig.json b/packages/framework/framework/tsconfig.json index 7e582b8e03..127f1c197a 100644 --- a/packages/framework/framework/tsconfig.json +++ b/packages/framework/framework/tsconfig.json @@ -2,7 +2,21 @@ "extends": "@fluentui-react-native/scripts/tsconfig.json", "compilerOptions": { "outDir": "lib", - "resolveJsonModule": true + "resolveJsonModule": true, + "baseUrl": ".", + "target": "es5", + "sourceMap": true, + "experimentalDecorators": true, + "importHelpers": true, + "strictNullChecks": true, + "noImplicitAny": true, + "noEmitOnError": true, + "skipLibCheck": true, + "moduleResolution": "node", + "noUnusedLocals": true, + "strict": true, + "suppressImplicitAnyIndexErrors": true, + "lib": ["es6"] }, "include": ["src"] }