Browse Source

Removes unused locals as an error

main
Eric Amodio 6 years ago
parent
commit
4539283e6b
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      tsconfig.json

+ 1
- 2
tsconfig.json View File

@ -7,11 +7,10 @@
"moduleResolution": "node", "moduleResolution": "node",
"noFallthroughCasesInSwitch": true, "noFallthroughCasesInSwitch": true,
"noImplicitReturns": true, "noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedLocals": false,
"outDir": "out", "outDir": "out",
"removeComments": true, "removeComments": true,
"rootDir": "./src", "rootDir": "./src",
"skipLibCheck": true,
"sourceMap": true, "sourceMap": true,
"strict": true, "strict": true,
"target": "es2017" "target": "es2017"

Loading…
Cancel
Save