Skip to content

Commit ed97645

Browse files
committed
Use ES2024 for target and library version
1 parent ff2c707 commit ed97645

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

tsconfig.node.json

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,11 @@
22
"compilerOptions": {
33
"composite": true,
44
"moduleResolution": "node",
5-
"target": "ES2020",
6-
"lib": ["ES2020"],
5+
"target": "es2024",
6+
"lib": ["ES2024"],
77
"allowSyntheticDefaultImports": true,
88
"esModuleInterop": true
99
},
1010
"extends": "./tsconfig.json",
11-
"include": [
12-
"src/extension/**/*.ts",
13-
"src/shared/**/*.ts",
14-
"rspack.config.ts",
15-
"postcss.config.ts"
16-
]
11+
"include": ["src/extension/**/*.ts", "src/shared/**/*.ts"]
1712
}

0 commit comments

Comments
 (0)