From 9e5ffd49882ce197aa679b1ee0b9cd0706db410c Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Fri, 18 Jul 2025 17:58:59 -0400 Subject: [PATCH] Try a different tsconfig --- tsconfig.json | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index c5afc89..d4753bc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,14 +15,15 @@ */ { "compilerOptions": { - "target": "es2022", - "module": "commonjs", + "alwaysStrict": true, + "esModuleInterop": true, "lib": ["es2022"], + "module": "commonjs", + "noImplicitAny": true, "outDir": "./dist", "rootDir": "./src", "strict": true, - "noImplicitAny": true, - "esModuleInterop": true + "target": "es2022", }, - "exclude": ["node_modules/", "tests/"] + "exclude": ["dist/", "node_modules/", "tests/"], }