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/"], }