diff options
author | 2021-12-16 18:53:22 -0500 | |
---|---|---|
committer | 2021-12-16 18:53:22 -0500 | |
commit | 45cea6aec5a310fed4cb8da0d96670d6b99a2539 (patch) | |
tree | ce97fe0094a054df4ada5d68c35fbda8cb643680 /packages/create-astro/tsconfig.json | |
parent | 810aeb321a46ff37ce1250cbfb727d944ef8a825 (diff) | |
download | astro-45cea6aec5a310fed4cb8da0d96670d6b99a2539.tar.gz astro-45cea6aec5a310fed4cb8da0d96670d6b99a2539.tar.zst astro-45cea6aec5a310fed4cb8da0d96670d6b99a2539.zip |
Support Node v14.15+ (#2202)
* Support Node v14.15+
* changeset
* Update .changeset/new-hats-design.md
Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
* Update .changeset/new-hats-design.md
Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
* Update .changeset/new-hats-design.md
Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
* ES2020
* update yarn.lock
Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
Diffstat (limited to 'packages/create-astro/tsconfig.json')
-rw-r--r-- | packages/create-astro/tsconfig.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/create-astro/tsconfig.json b/packages/create-astro/tsconfig.json index 6b3c4ca88..8f0cdf74d 100644 --- a/packages/create-astro/tsconfig.json +++ b/packages/create-astro/tsconfig.json @@ -3,7 +3,7 @@ "include": ["src", "index.d.ts"], "compilerOptions": { "allowJs": true, - "target": "ES2019", + "target": "ES2020", "module": "ES2020", "outDir": "./dist", "declarationDir": "./dist/types" |