summaryrefslogtreecommitdiff
path: root/examples/framework-svelte
diff options
context:
space:
mode:
authorGravatar Matthew Phillips <matthew@skypack.dev> 2022-07-11 08:12:18 -0400
committerGravatar GitHub <noreply@github.com> 2022-07-11 08:12:18 -0400
commit21869a614a89446a25175e45580943c28ab7413c (patch)
tree9075b65027ca3641d9fb29a852cae3fe6e938fd7 /examples/framework-svelte
parent16fdc01322455204b6fea912bd4c1c7b5316e734 (diff)
downloadastro-21869a614a89446a25175e45580943c28ab7413c.tar.gz
astro-21869a614a89446a25175e45580943c28ab7413c.tar.zst
astro-21869a614a89446a25175e45580943c28ab7413c.zip
Move client types into Astro (#3851)
* Move client types into Astro * Adds a changeset * Fix path to local client * Reference vite/client in our HMR types * Add back in the expect-error * Update types comment
Diffstat (limited to 'examples/framework-svelte')
-rw-r--r--examples/framework-svelte/tsconfig.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/framework-svelte/tsconfig.json b/examples/framework-svelte/tsconfig.json
index 7ac81809a..4db6ee701 100644
--- a/examples/framework-svelte/tsconfig.json
+++ b/examples/framework-svelte/tsconfig.json
@@ -9,7 +9,7 @@
"resolveJsonModule": true,
// Enable stricter transpilation for better output.
"isolatedModules": true,
- // Add type definitions for our Vite runtime.
- "types": ["vite/client"]
+ // Add type definitions for our Astro runtime.
+ "types": ["astro/client"]
}
}