From 7a0a186e5fd08e26062051c6b61bfa8d42d5b2f4 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Tue, 29 Oct 2019 16:24:52 -0700 Subject: [PATCH] tsconfig: Remove redundant options. `--jsx preserve` and `--removeComments false` are already the default. `--strict` already implies `--noImplicitAny`, `--noImplicitThis`, `--alwaysStrict`. Signed-off-by: Anders Kaseorg --- static/js/tsconfig.json | 5 ----- 1 file changed, 5 deletions(-) diff --git a/static/js/tsconfig.json b/static/js/tsconfig.json index cd5984b36d..fd9e9b0c40 100644 --- a/static/js/tsconfig.json +++ b/static/js/tsconfig.json @@ -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,