2018-07-30 13:58:49 -05:00
|
|
|
{
|
2023-07-17 08:49:15 -05:00
|
|
|
"extends": "@tsconfig/strictest/tsconfig.json",
|
2018-07-30 13:58:49 -05:00
|
|
|
"compilerOptions": {
|
2023-07-17 08:49:15 -05:00
|
|
|
"esModuleInterop": false,
|
2023-11-16 14:27:35 -06:00
|
|
|
"module": "CommonJS",
|
|
|
|
"moduleResolution": "Node16",
|
|
|
|
"target": "ES2021",
|
2018-07-30 13:58:49 -05:00
|
|
|
"outDir": "out",
|
2023-11-16 14:27:35 -06:00
|
|
|
"lib": ["ES2021"],
|
2018-07-30 13:58:49 -05:00
|
|
|
"sourceMap": true,
|
2020-05-20 13:03:49 -05:00
|
|
|
"rootDir": ".",
|
2023-11-16 14:27:35 -06:00
|
|
|
"newLine": "lf",
|
2023-07-17 08:49:15 -05:00
|
|
|
|
|
|
|
// FIXME: https://github.com/rust-lang/rust-analyzer/issues/15253
|
|
|
|
"exactOptionalPropertyTypes": false
|
2018-07-30 13:58:49 -05:00
|
|
|
},
|
2022-05-17 12:15:06 -05:00
|
|
|
"exclude": ["node_modules", ".vscode-test"],
|
|
|
|
"include": ["src", "tests"]
|
2018-08-10 17:04:09 -05:00
|
|
|
}
|