Skip to content

Commit 0786ed3

Browse files
committed
fix(config): use ES2023 target (esbuild compatibility)
1 parent 1df1ebc commit 0786ed3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.cursor/rules/project-infrastructure.mdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Only specify options beyond `strict: true`. The `strict` flag enables:
3333
```json
3434
{
3535
"compilerOptions": {
36-
"target": "ES2024",
36+
"target": "ES2023",
3737
"module": "NodeNext",
3838
"moduleResolution": "NodeNext",
3939
"strict": true,

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"compilerOptions": {
3-
"target": "ES2024",
3+
"target": "ES2023",
44
"module": "NodeNext",
55
"moduleResolution": "NodeNext",
6-
"lib": ["ES2024"],
6+
"lib": ["ES2023"],
77
"outDir": "./dist",
88
"rootDir": "./src",
99
"declaration": true,

0 commit comments

Comments
 (0)