gotools/tsconfig.json

23 lines
609 B
JSON
Raw Permalink Normal View History

2021-03-22 02:27:33 +03:00
{
"compilerOptions": {
"module": "commonjs",
2021-03-22 05:17:45 +03:00
"target": "es2020",
2021-03-22 02:27:33 +03:00
"outDir": "out",
"lib": [
2021-03-22 05:17:45 +03:00
"es2020"
2021-03-22 02:27:33 +03:00
],
"sourceMap": true,
"rootDir": "src",
"strict": false, /* enable all strict type-checking options */
2021-03-22 02:27:33 +03:00
/* 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. */,
"allowJs": true
2021-03-22 02:27:33 +03:00
},
"exclude": [
"node_modules",
".vscode-test"
]
}