2019-12-26 17:47:37 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es6",
|
|
|
|
"outDir": "out",
|
|
|
|
"lib": [
|
|
|
|
"es6"
|
|
|
|
],
|
|
|
|
"sourceMap": true,
|
|
|
|
"rootDir": "src",
|
|
|
|
"strict": true /* enable all strict type-checking options */
|
|
|
|
/* Additional Checks */
|
|
|
|
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
|
|
|
|
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
|
|
|
|
// "noUnusedParameters": true, /* Report errors on unused parameters. */
|
|
|
|
},
|
2020-12-10 20:02:10 +08:00
|
|
|
"include": ["src/**/*.ts"],
|
2019-12-26 17:47:37 +08:00
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
".vscode-test"
|
|
|
|
]
|
|
|
|
}
|