diff options
| author | bors <bors@rust-lang.org> | 2023-11-15 15:13:03 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-11-15 15:13:03 +0000 |
| commit | 1d3bf728080206575f581934a034e91eb7fc165a (patch) | |
| tree | 7f99f83405d3960062414b359aa8948c2427313c /editors/code | |
| parent | b8b4b22c1baf468b254b6f463f4871f42a474c7d (diff) | |
| parent | 8e8e7de93bf8297633e1723ba639f4ec4c38fc1b (diff) | |
| download | rust-1d3bf728080206575f581934a034e91eb7fc165a.tar.gz rust-1d3bf728080206575f581934a034e91eb7fc165a.zip | |
Auto merge of #15905 - lnicola:tsconfig, r=lnicola
minor: Tweak tsconfig.json CC https://github.com/rust-lang/rust-analyzer/pull/15904
Diffstat (limited to 'editors/code')
| -rw-r--r-- | editors/code/tsconfig.json | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/editors/code/tsconfig.json b/editors/code/tsconfig.json index ee353c28dd6..c74284a00d9 100644 --- a/editors/code/tsconfig.json +++ b/editors/code/tsconfig.json @@ -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 |
