Fix import-meta.d.ts not being included in the package (#4507)

This commit is contained in:
Erika 2022-08-26 19:28:34 -03:00 committed by GitHub
parent d85133393a
commit 4e1af3f0e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View file

@ -0,0 +1,5 @@
---
'astro': patch
---
Fix `import-meta.d.ts` not being included in the npm package

View file

@ -31,6 +31,7 @@
"./env": "./env.d.ts", "./env": "./env.d.ts",
"./client": "./client.d.ts", "./client": "./client.d.ts",
"./client-base": "./client-base.d.ts", "./client-base": "./client-base.d.ts",
"./import-meta": "./import-meta.d.ts",
"./astro-jsx": "./astro-jsx.d.ts", "./astro-jsx": "./astro-jsx.d.ts",
"./tsconfigs/*.json": "./tsconfigs/*", "./tsconfigs/*.json": "./tsconfigs/*",
"./tsconfigs/*": "./tsconfigs/*.json", "./tsconfigs/*": "./tsconfigs/*.json",
@ -75,6 +76,7 @@
"env.d.ts", "env.d.ts",
"client.d.ts", "client.d.ts",
"client-base.d.ts", "client-base.d.ts",
"import-meta.d.ts",
"astro-jsx.d.ts", "astro-jsx.d.ts",
"README.md", "README.md",
"vendor" "vendor"