diff options
author | 2023-03-06 19:57:16 +0100 | |
---|---|---|
committer | 2023-03-06 13:57:16 -0500 | |
commit | afbbc4d5bfafc1779bac00b41c2a1cb1c90f2808 (patch) | |
tree | ed5d71078fe08217272ff3a33a48d3cc31c78ac7 /packages/integrations/vue | |
parent | 18acae3edca702c418fcaf39b177555f5ea10017 (diff) | |
download | astro-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.json | 4 |
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" } } |