fix(tsconfig): Update TypeScript configs to ES2022 and remove deprecated compiler flags

This commit is contained in:
2025-11-17 08:09:37 +00:00
parent b69abda86c
commit 94aff06cbc
4 changed files with 9 additions and 7 deletions

View File

@@ -1,10 +1,8 @@
{
"compilerOptions": {
"experimentalDecorators": true,
"target": "ES2020",
"module": "ES2020",
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "node12",
"useDefineForClassFields": false,
"preserveValueImports": true,
"esModuleInterop": true
}