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