2018-07-30 18:58:49 +00:00
|
|
|
{
|
2023-06-27 18:01:57 +00:00
|
|
|
"extends": "@tsconfig/strictest/tsconfig.json",
|
2018-07-30 18:58:49 +00:00
|
|
|
"compilerOptions": {
|
2023-06-27 18:01:57 +00:00
|
|
|
"esModuleInterop": false,
|
2020-02-03 13:57:14 +00:00
|
|
|
"module": "commonjs",
|
2023-06-27 19:15:01 +00:00
|
|
|
"moduleResolution": "node16",
|
2022-04-15 15:14:51 +00:00
|
|
|
"target": "es2021",
|
2018-07-30 18:58:49 +00:00
|
|
|
"outDir": "out",
|
2022-04-15 15:14:51 +00:00
|
|
|
"lib": ["es2021"],
|
2018-07-30 18:58:49 +00:00
|
|
|
"sourceMap": true,
|
2020-05-20 18:03:49 +00:00
|
|
|
"rootDir": ".",
|
2023-06-27 18:01:57 +00:00
|
|
|
"newLine": "LF",
|
|
|
|
// These disables some enhancement type checking options
|
|
|
|
// to update typescript version without any code change.
|
2021-11-03 23:23:45 +00:00
|
|
|
"useUnknownInCatchVariables": false,
|
2023-06-27 18:01:57 +00:00
|
|
|
"exactOptionalPropertyTypes": false,
|
2023-06-27 19:03:53 +00:00
|
|
|
"noPropertyAccessFromIndexSignature": false
|
2018-07-30 18:58:49 +00:00
|
|
|
},
|
2020-05-20 18:03:49 +00:00
|
|
|
"exclude": ["node_modules", ".vscode-test"],
|
|
|
|
"include": ["src", "tests"]
|
2018-08-10 22:04:09 +00:00
|
|
|
}
|