From d9efba12c40755217090063c088f92fee2682473 Mon Sep 17 00:00:00 2001 From: Abhinav R Jha Date: Mon, 20 Oct 2025 17:05:32 +0530 Subject: [PATCH] Update TypeScript configuration options --- tsconfig.json | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 57184fd..d425595 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,14 +1,20 @@ { "compilerOptions": { - "checkJs": true, - "noImplicitAny": false, + "target": "ES2020", + "module": "ES2020", + "moduleResolution": "bundler", + "lib": ["ES2020"], + "declaration": true, + "declarationMap": true, + "outDir": "./lib", + "rootDir": "./src", + "strict": true, "esModuleInterop": true, - "moduleResolution": "node", "skipLibCheck": true, - "outDir": "lib", - "sourceMap": true, - "strict": true, - "target": "es2020" + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "allowSyntheticDefaultImports": true }, - "include": ["./src/**/*"] + "include": ["src/**/*"], + "exclude": ["node_modules", "lib", "**/__tests__/**"] }