Mind_Reader/tsconfig.json

22 lines
381 B
JSON
Raw Permalink Normal View History

2021-09-25 21:18:41 +00:00
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"outDir": "out",
"lib": [
"es6"
],
"sourceMap": true,
"rootDir": "src",
"strictPropertyInitialization": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true, /* enable all strict type-checking options */
2021-09-25 21:18:41 +00:00
},
"exclude": [
"node_modules",
".vscode-test",
"out"
]
}