diff options
Diffstat (limited to 'examples/framework-solid')
-rw-r--r-- | examples/framework-solid/package.json | 2 | ||||
-rw-r--r-- | examples/framework-solid/src/env.d.ts | 1 | ||||
-rw-r--r-- | examples/framework-solid/tsconfig.json | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 91aa311ab..8b4da409a 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@astrojs/solid-js": "^4.4.2", - "astro": "^4.15.9", + "astro": "^5.0.0-beta.2", "solid-js": "^1.9.1" } } diff --git a/examples/framework-solid/src/env.d.ts b/examples/framework-solid/src/env.d.ts deleted file mode 100644 index e16c13c69..000000000 --- a/examples/framework-solid/src/env.d.ts +++ /dev/null @@ -1 +0,0 @@ -/// <reference path="../.astro/types.d.ts" /> diff --git a/examples/framework-solid/tsconfig.json b/examples/framework-solid/tsconfig.json index 6e107fd32..7db18fbb3 100644 --- a/examples/framework-solid/tsconfig.json +++ b/examples/framework-solid/tsconfig.json @@ -1,5 +1,7 @@ { "extends": "astro/tsconfigs/base", + "include": [".astro/types.d.ts", "**/*"], + "exclude": ["dist"], "compilerOptions": { // Solid specific settings "jsx": "preserve", |