GoTools/tsconfig.json

22 lines
588 B
JSON
Raw 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",
2021-03-22 05:17:45 +03:00
"strict": true /* 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. */
},
"exclude": [
"node_modules",
".vscode-test"
]
}