mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-15 17:28:09 +00:00
c8fc00258d
`tslint` doesn't catch this because TypeScript has had this check builtin since 2.9. However, it's disabled by default so right now nothing is checking for unused variables.
13 lines
296 B
JSON
13 lines
296 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"outDir": "out",
|
|
"lib": ["es6"],
|
|
"sourceMap": true,
|
|
"rootDir": "src",
|
|
"strict": true,
|
|
"noUnusedLocals": true
|
|
},
|
|
"exclude": ["node_modules", ".vscode-test"]
|
|
}
|