Skip to content

Commit b7d2656

Browse files
committed
fix: downgrade TypeScript target and library to ES2022 for compatibility
1 parent 8956ada commit b7d2656

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

tsconfig.node.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"compilerOptions": {
33
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
4-
"target": "ES2023",
5-
"lib": ["ES2023"],
4+
"target": "ES2022",
5+
"lib": ["ES2022"],
66
"module": "ESNext",
77
"skipLibCheck": true,
88

@@ -19,7 +19,8 @@
1919
"noUnusedParameters": true,
2020
"erasableSyntaxOnly": true,
2121
"noFallthroughCasesInSwitch": true,
22-
"noUncheckedSideEffectImports": true
22+
"noUncheckedSideEffectImports": true,
23+
"forceConsistentCasingInFileNames": true
2324
},
2425
"include": ["vite.config.ts"]
2526
}

0 commit comments

Comments
 (0)