diff --git a/tsconfig.json b/tsconfig.json index 71f6182..bc74857 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,15 +1,14 @@ { "compilerOptions": { - "target": "es2022", - "module": "commonjs", - "rootDir": ".", - "outDir": "./dist", - "esModuleInterop": true, + "target": "ES2022", + "module": "Node16", + "moduleResolution": "Node16", + "outDir": "dist", + "rootDir": "src", "strict": true, + "esModuleInterop": true, "skipLibCheck": true, - "forceConsistentCasingInFileNames": true, - "resolveJsonModule": true + "declaration": true }, - "include": ["src/**/*", "config/**/*"], - "exclude": ["node_modules", "**/*.test.ts"] + "include": ["src"] }