summaryrefslogtreecommitdiff
path: root/examples/hackernews
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hackernews')
-rw-r--r--examples/hackernews/package.json4
-rw-r--r--examples/hackernews/src/env.d.ts1
-rw-r--r--examples/hackernews/tsconfig.json4
3 files changed, 5 insertions, 4 deletions
diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json
index 50ddf619e..2f16c7141 100644
--- a/examples/hackernews/package.json
+++ b/examples/hackernews/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/node": "^8.3.4",
- "astro": "^4.15.12"
+ "@astrojs/node": "^9.0.0-alpha.1",
+ "astro": "^5.0.0-beta.3"
}
}
diff --git a/examples/hackernews/src/env.d.ts b/examples/hackernews/src/env.d.ts
deleted file mode 100644
index e16c13c69..000000000
--- a/examples/hackernews/src/env.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-/// <reference path="../.astro/types.d.ts" />
diff --git a/examples/hackernews/tsconfig.json b/examples/hackernews/tsconfig.json
index d78f81ec4..f11a46c8e 100644
--- a/examples/hackernews/tsconfig.json
+++ b/examples/hackernews/tsconfig.json
@@ -1,3 +1,5 @@
{
- "extends": "astro/tsconfigs/base"
+ "extends": "astro/tsconfigs/base",
+ "include": [".astro/types.d.ts", "**/*"],
+ "exclude": ["dist"]
}