From d4478873dd7636a37fe517e487b760b5ea773d43 Mon Sep 17 00:00:00 2001 From: Ian Flanigan Date: Mon, 16 Nov 2020 02:54:37 +0100 Subject: [PATCH] Make Typescript a bit more strict (#45) --- tsconfig.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 22627a2..04d745d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,6 +5,9 @@ "allowSyntheticDefaultImports": true, "target": "es6", "noImplicitAny": true, + "noImplicitThis": true, + "noUnusedLocals": true, + "noUnusedParameters": true, "moduleResolution": "node", "sourceMap": true, "strictNullChecks": true,