From d3104bb5a21ebe2c4fc04a9af834ea23e9644bb4 Mon Sep 17 00:00:00 2001 From: florianfederspiel Date: Fri, 12 Sep 2025 19:18:51 +0200 Subject: [PATCH] Changed tsconfig --- tsconfig.json | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) 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"]