Update TypeScript target and library to ES2024

This commit is contained in:
2025-11-21 08:40:11 +01:00
parent 0ee1dc7e53
commit ce4996ae9d

View File

@@ -2,9 +2,9 @@
"compilerOptions": { "compilerOptions": {
"outDir": "./dist", "outDir": "./dist",
"rootDir": "./src", "rootDir": "./src",
"target": "ES2020", "target": "es2024",
"module": "CommonJS", "module": "CommonJS",
"lib": ["ES2020"], "lib": ["ES2024"],
"moduleResolution": "node", "moduleResolution": "node",
"esModuleInterop": true, "esModuleInterop": true,
"allowSyntheticDefaultImports": true, "allowSyntheticDefaultImports": true,