From ddc21a654e5b56c96f9b8e36c2728a2b66f96e0b Mon Sep 17 00:00:00 2001 From: yoannchb-pro <71560747+yoannchb-pro@users.noreply.github.com> Date: Wed, 28 Feb 2024 15:25:52 -0500 Subject: [PATCH] strict mode, bind types and fixed include to point on src --- tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index ebef21a..3be788f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,6 @@ { "compilerOptions": { + "strict": true, "baseUrl": "src", "module": "CommonJS", "esModuleInterop": true, @@ -12,6 +13,7 @@ "resolveJsonModule": true, "types": ["node", "chrome"], "typeRoots": ["node_modules/@types"], + "strictBindCallApply": true, "paths": { "@typing/*": ["types/*"], "@utils/*": ["utils/*"], @@ -19,5 +21,5 @@ "@questions/*": ["core/question/*"] } }, - "include": ["**/*"] + "include": ["src/**/*"] }