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