sp-dev-fx-webparts/samples/react-pagecontributors/tsconfig.json

36 lines
772 B
JSON
Raw Normal View History

2017-08-07 09:56:43 -04:00
{
2021-05-21 20:23:15 -04:00
"extends": "./node_modules/@microsoft/rush-stack-compiler-3.7/includes/tsconfig-web.json",
2017-08-07 09:56:43 -04:00
"compilerOptions": {
"target": "es5",
"forceConsistentCasingInFileNames": true,
2021-05-21 20:23:15 -04:00
"module": "esnext",
2017-08-07 09:56:43 -04:00
"jsx": "react",
"declaration": true,
"sourceMap": true,
"experimentalDecorators": true,
"types": [
"webpack-env"
2021-05-21 20:23:15 -04:00
],
"lib": [
"es2015.promise",
"es2015.collection",
"es5",
"dom"
],
"inlineSources": false,
"strictNullChecks": false,
"noUnusedLocals": false,
"outDir": "lib",
"moduleResolution": "node",
"skipLibCheck": true,
"typeRoots": [
"./node_modules/@types",
"./node_modules/@microsoft"
2017-08-07 09:56:43 -04:00
]
2021-05-21 20:23:15 -04:00
},
"include": [
2021-05-22 07:14:08 -04:00
"src/**/*.ts",
2021-05-21 20:23:15 -04:00
"src/**/*.tsx"
]
2017-08-07 09:56:43 -04:00
}