You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
942 B
34 lines
942 B
4 years ago
|
{
|
||
|
"compilerOptions": {
|
||
|
"moduleResolution": "node",
|
||
|
"module": "es2015",
|
||
|
"target": "es2015",
|
||
|
"lib": ["dom", "es6", "es2015", "es2016", "es2017", "scripthost"],
|
||
|
"sourceMap": true,
|
||
|
// "declaration": true,
|
||
|
// "declarationDir": "./declarations",
|
||
|
"noEmitOnError": true,
|
||
|
"noImplicitAny": true,
|
||
|
"suppressImplicitAnyIndexErrors": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"noImplicitThis": true,
|
||
|
"strictNullChecks": true,
|
||
|
// "noUnusedParameters": true,
|
||
|
// "noUnusedLocals": true,
|
||
|
// "noFallthroughCasesInSwitch": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"baseUrl": ".",
|
||
|
"paths": {
|
||
|
},
|
||
|
// "traceResolution": true,
|
||
|
"types": ["node"],
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"dist",
|
||
|
"node_modules",
|
||
|
]
|
||
|
}
|