tsconfig: Remove redundant options.

`--jsx preserve` and `--removeComments false` are already the default.
`--strict` already implies `--noImplicitAny`, `--noImplicitThis`,
`--alwaysStrict`.

Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
This commit is contained in:
Anders Kaseorg 2019-10-29 16:24:52 -07:00 committed by Tim Abbott
parent 70f72a3ae8
commit 7a0a186e5f
1 changed files with 0 additions and 5 deletions

View File

@ -10,16 +10,11 @@
"noEmit": true,
"target": "es5",
"module": "es6",
"jsx": "preserve",
"sourceMap": true,
"removeComments": false,
/* Strict type-checking */
"strict": true,
"noImplicitAny": true,
"strictNullChecks": false,
"noImplicitThis": true,
"alwaysStrict": true,
/* Additional checks */
"noUnusedLocals": true,