2018-07-30 13:58:49 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-02-03 07:57:14 -06:00
|
|
|
"module": "commonjs",
|
2020-03-18 13:43:25 -05:00
|
|
|
"target": "es2019",
|
2018-07-30 13:58:49 -05:00
|
|
|
"outDir": "out",
|
2019-12-29 19:22:52 -06:00
|
|
|
"lib": [
|
2019-12-30 20:33:00 -06:00
|
|
|
"es2019"
|
2019-12-29 19:22:52 -06:00
|
|
|
],
|
2018-07-30 13:58:49 -05:00
|
|
|
"sourceMap": true,
|
2020-05-20 13:03:49 -05:00
|
|
|
"rootDir": ".",
|
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,
|
2019-12-30 16:30:35 -06:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2020-02-03 09:37:12 -06:00
|
|
|
"newLine": "LF"
|
2018-07-30 13:58:49 -05:00
|
|
|
},
|
2019-12-29 19:22:52 -06:00
|
|
|
"exclude": [
|
2020-05-20 13:03:49 -05:00
|
|
|
"node_modules",
|
|
|
|
".vscode-test"
|
|
|
|
],
|
|
|
|
"include": [
|
|
|
|
"src",
|
|
|
|
"tests"
|
2019-12-29 19:22:52 -06:00
|
|
|
]
|
2018-08-10 17:04:09 -05:00
|
|
|
}
|