Skip to content

Commit

Permalink
undo most of changes to framework tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
Saadnajmi committed Jan 29, 2025
1 parent b428cab commit 8512066
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion packages/framework/framework/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
}

0 comments on commit 8512066

Please sign in to comment.