summaryrefslogtreecommitdiff
path: root/packages/integrations/vue
diff options
context:
space:
mode:
authorGravatar Erika <3019731+Princesseuh@users.noreply.github.com> 2023-03-06 19:57:16 +0100
committerGravatar GitHub <noreply@github.com> 2023-03-06 13:57:16 -0500
commitafbbc4d5bfafc1779bac00b41c2a1cb1c90f2808 (patch)
treeed5d71078fe08217272ff3a33a48d3cc31c78ac7 /packages/integrations/vue
parent18acae3edca702c418fcaf39b177555f5ea10017 (diff)
downloadastro-afbbc4d5bfafc1779bac00b41c2a1cb1c90f2808.tar.gz
astro-afbbc4d5bfafc1779bac00b41c2a1cb1c90f2808.tar.zst
astro-afbbc4d5bfafc1779bac00b41c2a1cb1c90f2808.zip
Update compilation target for Node 16 (#6213)
* config(esbuild): Update esbuild target to node16 * config(package): Update root package.json node engine * config(tsconfig): Update all the tsconfigs module and targets * chore: changeset * chore: remove unneeded file
Diffstat (limited to 'packages/integrations/vue')
-rw-r--r--packages/integrations/vue/tsconfig.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/vue/tsconfig.json b/packages/integrations/vue/tsconfig.json
index 44baf375c..64d4ef454 100644
--- a/packages/integrations/vue/tsconfig.json
+++ b/packages/integrations/vue/tsconfig.json
@@ -3,8 +3,8 @@
"include": ["src"],
"compilerOptions": {
"allowJs": true,
- "module": "ES2020",
+ "module": "ES2022",
"outDir": "./dist",
- "target": "ES2020"
+ "target": "ES2021"
}
}