summaryrefslogtreecommitdiff
path: root/examples/framework-solid
diff options
context:
space:
mode:
Diffstat (limited to 'examples/framework-solid')
-rw-r--r--examples/framework-solid/package.json3
-rw-r--r--examples/framework-solid/src/env.d.ts1
-rw-r--r--examples/framework-solid/tsconfig.json2
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index 89b2a53bc..0a4b303ef 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -5,14 +5,13 @@
"private": true,
"scripts": {
"dev": "astro dev",
- "start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/solid-js": "^4.4.2",
- "astro": "^4.16.7",
+ "astro": "^5.0.0-beta.5",
"solid-js": "^1.9.2"
}
}
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",