Skip to content

Commit db0d35c

Browse files
committed
refactor: update tsconfig target
1 parent e25f7d2 commit db0d35c

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

packages/plugin-vue-jsx/tsconfig.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"exclude": ["**/*.spec.ts"],
44
"compilerOptions": {
55
"outDir": "dist",
6-
"target": "ES2020",
7-
"module": "ES2020",
8-
"moduleResolution": "Node",
6+
"target": "es2023",
7+
"module": "preserve",
8+
"moduleResolution": "bundler",
99
"strict": true,
1010
"declaration": true,
1111
"sourceMap": true,

packages/plugin-vue/tsconfig.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"exclude": ["**/*.spec.ts"],
44
"compilerOptions": {
55
"outDir": "dist",
6-
"target": "ES2020",
7-
"module": "ES2020",
8-
"moduleResolution": "node",
6+
"target": "es2023",
7+
"module": "preserve",
8+
"moduleResolution": "bundler",
99
"strict": true,
1010
"declaration": true,
1111
"sourceMap": true,

playground/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"include": ["."],
33
"exclude": ["**/dist/**"],
44
"compilerOptions": {
5-
"target": "ES2020",
5+
"target": "ES2023",
66
"module": "ESNext",
77
"outDir": "dist",
88
"baseUrl": ".",

scripts/tsconfig.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
"$schema": "https://json.schemastore.org/tsconfig",
33
"include": ["."],
44
"compilerOptions": {
5-
"module": "ES2020",
6-
"target": "ES2020",
7-
"moduleResolution": "Node",
5+
"target": "es2023",
6+
"module": "preserve",
7+
"moduleResolution": "bundler",
88
"strict": true,
99
"esModuleInterop": true,
1010
"skipLibCheck": true,

0 commit comments

Comments
 (0)