From 9b0e832a139c8f122c0e94a84e17fbd7da09e8b1 Mon Sep 17 00:00:00 2001 From: Alfi Maulana Date: Tue, 6 Aug 2024 15:37:49 +0700 Subject: [PATCH] build: enable TypeScript strict configuration --- tsconfig.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index f0e6d05..f4971d8 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,6 +2,8 @@ "include": ["src"], "exclude": ["**/*.test.ts"], "compilerOptions": { + "exactOptionalPropertyTypes": true, + "strict": true, "module": "node16", "moduleResolution": "node16", "esModuleInterop": true,