From 82d68c76b483c2622d351533ba184bfc3f2ead80 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Wed, 25 Oct 2023 00:29:06 +0200 Subject: [PATCH] chore: enable ts strict mode --- tsconfig.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index e8d5553..2b934df 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,9 +2,9 @@ "compilerOptions": { "target": "ESNext", "module": "ESNext", - "moduleResolution": "node", - "skipLibCheck": true, - "declaration": true + "moduleResolution": "Node", + "esModuleInterop": true, + "strict": true }, "include": ["src", "test"] }