mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-27 13:33:31 +00:00
Auto merge of #15905 - lnicola:tsconfig, r=lnicola
minor: Tweak tsconfig.json CC https://github.com/rust-lang/rust-analyzer/pull/15904
This commit is contained in:
commit
1d3bf72808
1 changed files with 5 additions and 5 deletions
|
@ -2,14 +2,14 @@
|
|||
"extends": "@tsconfig/strictest/tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"esModuleInterop": false,
|
||||
"module": "commonjs",
|
||||
"moduleResolution": "node16",
|
||||
"target": "es2021",
|
||||
"module": "CommonJS",
|
||||
"moduleResolution": "Node16",
|
||||
"target": "ES2021",
|
||||
"outDir": "out",
|
||||
"lib": ["es2021"],
|
||||
"lib": ["ES2021"],
|
||||
"sourceMap": true,
|
||||
"rootDir": ".",
|
||||
"newLine": "LF",
|
||||
"newLine": "lf",
|
||||
|
||||
// FIXME: https://github.com/rust-lang/rust-analyzer/issues/15253
|
||||
"exactOptionalPropertyTypes": false
|
||||
|
|
Loading…
Reference in a new issue