From 3a86402440bdb14e854f7b6aac56267660633880 Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Sun, 9 Mar 2025 14:05:52 -0700 Subject: [PATCH] build(tsconfig): enable stricter options --- tsconfig.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 941b1356..bf9727a7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,7 @@ { "compilerOptions": { "noEmit": true, + "erasableSyntaxOnly": true, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "ignoreDeprecations": "5.0", @@ -11,6 +12,7 @@ "moduleResolution": "node", "noUnusedLocals": true, "noUnusedParameters": true, + "noImplicitAny": true, "strict": true, "skipLibCheck": true, "skipDefaultLibCheck": true,