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,
|
"noEmit": true,
|
||||||
"target": "es5",
|
"target": "es5",
|
||||||
"module": "es6",
|
"module": "es6",
|
||||||
"jsx": "preserve",
|
|
||||||
"sourceMap": true,
|
"sourceMap": true,
|
||||||
"removeComments": false,
|
|
||||||
|
|
||||||
/* Strict type-checking */
|
/* Strict type-checking */
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"noImplicitAny": true,
|
|
||||||
"strictNullChecks": false,
|
"strictNullChecks": false,
|
||||||
"noImplicitThis": true,
|
|
||||||
"alwaysStrict": true,
|
|
||||||
|
|
||||||
/* Additional checks */
|
/* Additional checks */
|
||||||
"noUnusedLocals": true,
|
"noUnusedLocals": true,
|
||||||
|
|
Loading…
Reference in New Issue