From 80f3b63f44881b8fd19e76d586857dde4bd7e592 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Weslley=20Ara=C3=BAjo?= <46850407+wellwelwel@users.noreply.github.com> Date: Sun, 21 Apr 2024 07:17:25 -0300 Subject: [PATCH] chore(lint): improve good practices (#15) --- tsconfig.json | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index c0e18ef..ab04c3e 100755 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,16 +4,14 @@ "target": "ES6", "module": "CommonJS", "esModuleInterop": true, - "alwaysStrict": true, - "noUnusedLocals": false, + "isolatedModules": true, "strict": true, - "strictFunctionTypes": false, - "noImplicitAny": true, - "sourceMap": false, - "removeComments": false, + "alwaysStrict": true, + "strictFunctionTypes": true, "listEmittedFiles": true, + "noImplicitAny": true, + "noUnusedLocals": true, "noUnusedParameters": true, - "isolatedModules": true, "forceConsistentCasingInFileNames": true, "declaration": true, "declarationDir": "lib",