mirror of https://github.com/zulip/zulip.git
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:
parent
70f72a3ae8
commit
7a0a186e5f
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue