2020-04-30 13:46:27 -04:00
|
|
|
{
|
2024-01-08 13:44:04 -05:00
|
|
|
"extends": "./node_modules/@microsoft/rush-stack-compiler-4.7/includes/tsconfig-web.json",
|
2020-04-30 13:46:27 -04:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"jsx": "react",
|
|
|
|
"declaration": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"outDir": "lib",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"@src/*": [
|
|
|
|
"src/*"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"inlineSources": false,
|
|
|
|
"strictNullChecks": false,
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
"typeRoots": [
|
|
|
|
"./node_modules/@types",
|
|
|
|
"./node_modules/@microsoft"
|
|
|
|
],
|
|
|
|
"types": [
|
|
|
|
"webpack-env"
|
|
|
|
],
|
|
|
|
"lib": [
|
|
|
|
// commented out to allow for this.constructor.name support
|
2022-03-28 02:35:21 -04:00
|
|
|
"es2015.promise",
|
2020-04-30 13:46:27 -04:00
|
|
|
"es2017",
|
|
|
|
"dom",
|
|
|
|
"es2015.collection"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"include": [
|
2022-03-28 02:35:21 -04:00
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.tsx"
|
2020-04-30 13:46:27 -04:00
|
|
|
]
|
|
|
|
}
|