mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-10 07:04:22 +00:00
19 lines
544 B
JSON
19 lines
544 B
JSON
{
|
|
"extends": "@tsconfig/strictest/tsconfig.json",
|
|
"compilerOptions": {
|
|
"esModuleInterop": false,
|
|
"module": "Node16",
|
|
"moduleResolution": "Node16",
|
|
"target": "ES2021",
|
|
"outDir": "out",
|
|
"lib": ["ES2021"],
|
|
"sourceMap": true,
|
|
"rootDir": ".",
|
|
"newLine": "lf",
|
|
|
|
// FIXME: https://github.com/rust-lang/rust-analyzer/issues/15253
|
|
"exactOptionalPropertyTypes": false
|
|
},
|
|
"exclude": ["node_modules", ".vscode-test"],
|
|
"include": ["src", "tests"]
|
|
}
|