2019-03-09 05:39:42 -05:00
|
|
|
{
|
2022-01-01 08:20:46 -05:00
|
|
|
"extends": "./node_modules/@microsoft/rush-stack-compiler-3.9/includes/tsconfig-web.json",
|
2019-03-09 05:39:42 -05:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"jsx": "react",
|
|
|
|
"declaration": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"outDir": "lib",
|
2022-01-01 08:20:46 -05:00
|
|
|
"inlineSources": false,
|
|
|
|
"strictNullChecks": false,
|
|
|
|
"noUnusedLocals": false,
|
2019-03-09 05:39:42 -05:00
|
|
|
"typeRoots": [
|
|
|
|
"./node_modules/@types",
|
|
|
|
"./node_modules/@microsoft"
|
|
|
|
],
|
|
|
|
"types": [
|
|
|
|
"webpack-env"
|
|
|
|
],
|
|
|
|
"lib": [
|
|
|
|
"es5",
|
|
|
|
"dom",
|
2022-01-01 08:20:46 -05:00
|
|
|
"es2015.collection",
|
|
|
|
"es2015.promise"
|
2019-03-09 05:39:42 -05:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"include": [
|
2022-01-01 08:20:46 -05:00
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.tsx"
|
2019-03-09 05:39:42 -05:00
|
|
|
]
|
|
|
|
}
|