diff --git a/tsconfig.json b/tsconfig.json index 94b2972..4b5cee7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,17 +1,13 @@ { "compilerOptions": { - "target": "ES2020", - "module": "NodeNext", - "moduleResolution": "NodeNext", - "esModuleInterop": true, - "allowSyntheticDefaultImports": true, - "strict": true, - "skipLibCheck": true, - "forceConsistentCasingInFileNames": true, - "resolveJsonModule": true, - "isolatedModules": true, + "target": "ES2021", + "lib": ["ES2021"], + "module": "commonjs", "outDir": "dist", - "types": ["node"] + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true }, "include": ["src"], "exclude": ["node_modules", "dist"]