sp-dev-fx-webparts/samples/js-workbench-customizer/tsconfig.json

39 lines
799 B
JSON
Raw Normal View History

2019-02-09 05:10:52 -05:00
{
2020-01-21 11:16:10 -05:00
"extends": "./node_modules/@microsoft/rush-stack-compiler-3.3/includes/tsconfig-web.json",
2019-02-09 05:10:52 -05:00
"compilerOptions": {
"target": "es5",
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"jsx": "react",
"declaration": true,
"sourceMap": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"outDir": "lib",
2020-01-21 11:16:10 -05:00
"inlineSources": false,
"strictNullChecks": false,
"noUnusedLocals": false,
2019-02-09 05:10:52 -05:00
"typeRoots": [
"./node_modules/@types",
"./node_modules/@microsoft"
],
"types": [
"es6-promise",
"webpack-env"
],
"lib": [
"es5",
"dom",
"es2015.collection"
]
},
"include": [
"src/**/*.ts"
2019-02-09 05:10:52 -05:00
],
"exclude": [
"node_modules",
"lib"
]
}