mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-14 00:47:18 +00:00
26 lines
539 B
JSON
26 lines
539 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2019",
|
|
"outDir": "out",
|
|
"lib": [
|
|
"es2019"
|
|
],
|
|
"sourceMap": true,
|
|
"rootDir": ".",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"newLine": "LF"
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
".vscode-test"
|
|
],
|
|
"include": [
|
|
"src",
|
|
"tests"
|
|
]
|
|
}
|