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"] }