sp-dev-fx-webparts/samples/react-pages-hierarchy/tsconfig.json

43 lines
925 B
JSON
Raw Normal View History

{
"extends": "./node_modules/@microsoft/rush-stack-compiler-4.7/includes/tsconfig-web.json",
"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",
"es2017",
"dom",
"es2015.collection"
]
},
"include": [
2022-03-28 02:35:21 -04:00
"src/**/*.ts",
"src/**/*.tsx"
]
}