36 lines
746 B
JSON
36 lines
746 B
JSON
{
|
|
"extends": "./node_modules/@microsoft/rush-stack-compiler-3.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",
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./node_modules/@microsoft"
|
|
],
|
|
"types": [
|
|
"es6-promise",
|
|
"webpack-env"
|
|
],
|
|
"lib": [
|
|
"es5",
|
|
"dom",
|
|
"es2015.collection"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"lib"
|
|
]
|
|
}
|