diff options
Diffstat (limited to 'examples/ssr')
-rw-r--r-- | examples/ssr/package.json | 6 | ||||
-rw-r--r-- | examples/ssr/src/env.d.ts | 1 | ||||
-rw-r--r-- | examples/ssr/tsconfig.json | 4 |
3 files changed, 6 insertions, 5 deletions
diff --git a/examples/ssr/package.json b/examples/ssr/package.json index efa83df13..58d581073 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -12,9 +12,9 @@ "server": "node dist/server/entry.mjs" }, "dependencies": { - "@astrojs/node": "^8.3.4", - "@astrojs/svelte": "^5.7.2", - "astro": "^4.16.0", + "@astrojs/node": "^9.0.0-alpha.1", + "@astrojs/svelte": "^6.0.0-beta.1", + "astro": "^5.0.0-beta.4", "svelte": "^4.2.19" } } diff --git a/examples/ssr/src/env.d.ts b/examples/ssr/src/env.d.ts deleted file mode 100644 index e16c13c69..000000000 --- a/examples/ssr/src/env.d.ts +++ /dev/null @@ -1 +0,0 @@ -/// <reference path="../.astro/types.d.ts" /> diff --git a/examples/ssr/tsconfig.json b/examples/ssr/tsconfig.json index d78f81ec4..f11a46c8e 100644 --- a/examples/ssr/tsconfig.json +++ b/examples/ssr/tsconfig.json @@ -1,3 +1,5 @@ { - "extends": "astro/tsconfigs/base" + "extends": "astro/tsconfigs/base", + "include": [".astro/types.d.ts", "**/*"], + "exclude": ["dist"] } |