2018-07-30 13:58:49 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
2019-12-11 07:40:26 -06:00
|
|
|
"target": "es2018",
|
2018-07-30 13:58:49 -05:00
|
|
|
"outDir": "out",
|
2019-12-11 07:40:26 -06:00
|
|
|
"lib": ["es2018"],
|
2018-07-30 13:58:49 -05:00
|
|
|
"sourceMap": true,
|
2018-08-27 14:52:43 -05:00
|
|
|
"rootDir": "src",
|
2019-06-29 03:00:22 -05:00
|
|
|
"strict": true,
|
2019-12-11 09:41:16 -06:00
|
|
|
"noUnusedLocals": true,
|
2019-12-11 09:49:54 -06:00
|
|
|
"noUnusedParameters": true,
|
2019-12-11 09:51:28 -06:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true
|
2018-07-30 13:58:49 -05:00
|
|
|
},
|
2018-10-08 16:38:33 -05:00
|
|
|
"exclude": ["node_modules", ".vscode-test"]
|
2018-08-10 17:04:09 -05:00
|
|
|
}
|