2018-07-30 21:58:49 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-02-03 14:57:14 +01:00
|
|
|
"module": "commonjs",
|
2022-04-15 18:14:51 +03:00
|
|
|
"target": "es2021",
|
2018-07-30 21:58:49 +03:00
|
|
|
"outDir": "out",
|
2022-04-15 18:14:51 +03:00
|
|
|
"lib": ["es2021"],
|
2018-07-30 21:58:49 +03:00
|
|
|
"sourceMap": true,
|
2020-05-20 21:03:49 +03:00
|
|
|
"rootDir": ".",
|
2019-06-29 18:00:22 +10:00
|
|
|
"strict": true,
|
2021-11-04 01:23:45 +02:00
|
|
|
"useUnknownInCatchVariables": false,
|
2019-12-12 00:41:16 +09:00
|
|
|
"noUnusedLocals": true,
|
2019-12-12 00:49:54 +09:00
|
|
|
"noUnusedParameters": true,
|
2019-12-12 00:51:28 +09:00
|
|
|
"noImplicitReturns": true,
|
2019-12-30 23:30:35 +01:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2020-02-03 16:37:12 +01:00
|
|
|
"newLine": "LF"
|
2018-07-30 21:58:49 +03:00
|
|
|
},
|
2020-05-20 21:03:49 +03:00
|
|
|
"exclude": ["node_modules", ".vscode-test"],
|
|
|
|
"include": ["src", "tests"]
|
2018-08-11 01:04:09 +03:00
|
|
|
}
|