2018-07-30 13:58:49 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-02-03 07:57:14 -06:00
|
|
|
"module": "commonjs",
|
2022-04-15 10:14:51 -05:00
|
|
|
"target": "es2021",
|
2018-07-30 13:58:49 -05:00
|
|
|
"outDir": "out",
|
2022-04-15 10:14:51 -05:00
|
|
|
"lib": ["es2021"],
|
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,
|
2021-11-03 18:23:45 -05:00
|
|
|
"useUnknownInCatchVariables": false,
|
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
|
|
|
},
|
2020-05-20 13:03:49 -05:00
|
|
|
"exclude": ["node_modules", ".vscode-test"],
|
|
|
|
"include": ["src", "tests"]
|
2018-08-10 17:04:09 -05:00
|
|
|
}
|