28 lines
612 B
JSON
28 lines
612 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"strict": true,
|
||
|
|
"outDir": "bin",
|
||
|
|
"target": "es2020",
|
||
|
|
"module": "commonjs",
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"sourceMap": true,
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"pretty": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"noImplicitReturns": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"declaration": true,
|
||
|
|
"declarationMap": true
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"**/*.ts"
|
||
|
|
],
|
||
|
|
"exclude": [
|
||
|
|
"node_modules",
|
||
|
|
"bin",
|
||
|
|
"build",
|
||
|
|
"out",
|
||
|
|
"_test_"
|
||
|
|
]
|
||
|
|
}
|