1
1
mirror of https://github.com/kahole/edamagit.git synced 2024-09-11 07:15:31 +03:00
edamagit/tsconfig.json
2020-10-02 17:22:54 -07:00

24 lines
695 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es2018",
"outDir": "out",
"lib": [
"es2018",
"ES2019.Array",
"ES2020.String"
],
"sourceMap": true,
"rootDir": "",
"resolveJsonModule": true,
"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. */
},
"exclude": [
"node_modules",
".vscode-test"
]
}