diff options
Diffstat (limited to 'src/tools/rust-analyzer/editors/code/tsconfig.json')
| -rw-r--r-- | src/tools/rust-analyzer/editors/code/tsconfig.json | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/tools/rust-analyzer/editors/code/tsconfig.json b/src/tools/rust-analyzer/editors/code/tsconfig.json new file mode 100644 index 00000000000..42e2846858a --- /dev/null +++ b/src/tools/rust-analyzer/editors/code/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "module": "commonjs", + "target": "es2021", + "outDir": "out", + "lib": ["es2021"], + "sourceMap": true, + "rootDir": ".", + "strict": true, + "useUnknownInCatchVariables": false, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noImplicitReturns": true, + "noFallthroughCasesInSwitch": true, + "newLine": "LF" + }, + "exclude": ["node_modules", ".vscode-test"], + "include": ["src", "tests"] +} |
