Skip to content

Commit c5f46d2

Browse files
authored
build!: bump targets (#8045)
1 parent 029288a commit c5f46d2

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

packages/plugin-vue-jsx/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"exclude": ["**/*.spec.ts"],
44
"compilerOptions": {
55
"outDir": "dist",
6-
"target": "ES2018",
6+
"target": "ES2020",
77
"module": "CommonJS",
88
"moduleResolution": "Node",
99
"strict": true,

packages/plugin-vue/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"exclude": ["**/*.spec.ts"],
44
"compilerOptions": {
55
"outDir": "dist",
6-
"target": "ES2019",
6+
"target": "ES2020",
77
"module": "commonjs",
88
"moduleResolution": "node",
99
"strict": true,

playground/tsconfig.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
"include": ["."],
33
"exclude": ["**/dist/**"],
44
"compilerOptions": {
5-
"target": "es2019",
6-
"module": "esnext",
5+
"target": "ES2020",
6+
"module": "ESNext",
77
"outDir": "dist",
88
"baseUrl": ".",
99
"allowJs": true,
1010
"esModuleInterop": true,
1111
"resolveJsonModule": true,
12-
"moduleResolution": "node",
12+
"moduleResolution": "Node",
1313
"skipLibCheck": true,
1414
"noUnusedLocals": true,
1515
"jsx": "preserve",

scripts/tsconfig.json

+3-3
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": "commonjs",
6-
"target": "es2019",
7-
"moduleResolution": "node",
5+
"module": "CommonJS",
6+
"target": "ES2020",
7+
"moduleResolution": "Node",
88
"strict": true,
99
"esModuleInterop": true,
1010
"skipLibCheck": true,

0 commit comments

Comments
 (0)