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,
|
2024-01-03 13:55:39 +00:00
|
|
|
"module": "Node16",
|
2023-11-15 15:08:39 +00:00
|
|
|
"moduleResolution": "Node16",
|
|
|
|
"target": "ES2021",
|
2018-07-30 18:58:49 +00:00
|
|
|
"outDir": "out",
|
2023-11-15 15:08:39 +00:00
|
|
|
"lib": ["ES2021"],
|
2018-07-30 18:58:49 +00:00
|
|
|
"sourceMap": true,
|
2020-05-20 18:03:49 +00:00
|
|
|
"rootDir": ".",
|
2023-11-15 15:08:39 +00:00
|
|
|
"newLine": "lf",
|
2023-07-10 14:27:49 +00:00
|
|
|
|
|
|
|
// FIXME: https://github.com/rust-lang/rust-analyzer/issues/15253
|
2023-06-28 09:15:30 +00:00
|
|
|
"exactOptionalPropertyTypes": 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
|
|
|
}
|