2018-07-30 13:58:49 -05:00
|
|
|
{
|
2023-06-27 13:01:57 -05:00
|
|
|
"extends": "@tsconfig/strictest/tsconfig.json",
|
2018-07-30 13:58:49 -05:00
|
|
|
"compilerOptions": {
|
2023-06-27 13:01:57 -05:00
|
|
|
"esModuleInterop": false,
|
2020-02-03 07:57:14 -06:00
|
|
|
"module": "commonjs",
|
2023-06-27 14:15:01 -05:00
|
|
|
"moduleResolution": "node16",
|
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": ".",
|
2023-06-27 13:01:57 -05:00
|
|
|
"newLine": "LF",
|
|
|
|
// These disables some enhancement type checking options
|
|
|
|
// to update typescript version without any code change.
|
2023-06-28 04:15:30 -05:00
|
|
|
"exactOptionalPropertyTypes": false
|
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
|
|
|
}
|