diff --git a/packages/plugin-vue-jsx/tsconfig.json b/packages/plugin-vue-jsx/tsconfig.json index c20adf0d..0068f943 100644 --- a/packages/plugin-vue-jsx/tsconfig.json +++ b/packages/plugin-vue-jsx/tsconfig.json @@ -3,7 +3,7 @@ "exclude": ["**/*.spec.ts"], "compilerOptions": { "outDir": "dist", - "target": "ES2018", + "target": "ES2020", "module": "CommonJS", "moduleResolution": "Node", "strict": true, diff --git a/packages/plugin-vue/tsconfig.json b/packages/plugin-vue/tsconfig.json index 6165780e..ca2267f0 100644 --- a/packages/plugin-vue/tsconfig.json +++ b/packages/plugin-vue/tsconfig.json @@ -3,7 +3,7 @@ "exclude": ["**/*.spec.ts"], "compilerOptions": { "outDir": "dist", - "target": "ES2019", + "target": "ES2020", "module": "commonjs", "moduleResolution": "node", "strict": true, diff --git a/playground/tsconfig.json b/playground/tsconfig.json index ada2a60b..cbf237ee 100644 --- a/playground/tsconfig.json +++ b/playground/tsconfig.json @@ -2,14 +2,14 @@ "include": ["."], "exclude": ["**/dist/**"], "compilerOptions": { - "target": "es2019", - "module": "esnext", + "target": "ES2020", + "module": "ESNext", "outDir": "dist", "baseUrl": ".", "allowJs": true, "esModuleInterop": true, "resolveJsonModule": true, - "moduleResolution": "node", + "moduleResolution": "Node", "skipLibCheck": true, "noUnusedLocals": true, "jsx": "preserve", diff --git a/scripts/tsconfig.json b/scripts/tsconfig.json index 92cbe98f..3c25c197 100644 --- a/scripts/tsconfig.json +++ b/scripts/tsconfig.json @@ -2,9 +2,9 @@ "$schema": "https://json.schemastore.org/tsconfig", "include": ["."], "compilerOptions": { - "module": "commonjs", - "target": "es2019", - "moduleResolution": "node", + "module": "CommonJS", + "target": "ES2020", + "moduleResolution": "Node", "strict": true, "esModuleInterop": true, "skipLibCheck": true,