2023-11-17 07:21:16 -05:00
|
|
|
{
|
2024-03-16 07:01:31 -04:00
|
|
|
"extends": "./node_modules/@microsoft/rush-stack-compiler-4.7/includes/tsconfig-web.json",
|
2023-11-17 07:21:16 -05:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"jsx": "react",
|
|
|
|
"declaration": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"outDir": "lib",
|
|
|
|
"inlineSources": false,
|
|
|
|
"strictNullChecks": false,
|
2023-11-18 05:41:00 -05:00
|
|
|
"noImplicitAny": false,
|
2023-11-26 00:18:13 -05:00
|
|
|
"noUnusedLocals": false,
|
2023-11-18 05:41:00 -05:00
|
|
|
"typeRoots": ["./node_modules/@types", "./node_modules/@microsoft"],
|
|
|
|
"types": ["webpack-env"],
|
|
|
|
"lib": ["es5", "dom", "es2015.collection", "es2015.promise"]
|
2023-11-17 07:21:16 -05:00
|
|
|
},
|
2023-11-18 05:41:00 -05:00
|
|
|
"include": ["src/**/*.ts", "src/**/*.tsx"]
|
2023-11-17 07:21:16 -05:00
|
|
|
}
|