diff options
Diffstat (limited to 'examples/blog')
-rw-r--r-- | examples/blog/package.json | 4 | ||||
-rw-r--r-- | examples/blog/src/env.d.ts | 1 | ||||
-rw-r--r-- | examples/blog/tsconfig.json | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/examples/blog/package.json b/examples/blog/package.json index 2935f2cee..7265f2f2c 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -11,9 +11,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^3.1.5", + "@astrojs/mdx": "^4.0.0-alpha.2", "@astrojs/rss": "^4.0.7", "@astrojs/sitemap": "^3.1.6", - "astro": "^4.15.4" + "astro": "^5.0.0-alpha.6" } } diff --git a/examples/blog/src/env.d.ts b/examples/blog/src/env.d.ts deleted file mode 100644 index e16c13c69..000000000 --- a/examples/blog/src/env.d.ts +++ /dev/null @@ -1 +0,0 @@ -/// <reference path="../.astro/types.d.ts" /> diff --git a/examples/blog/tsconfig.json b/examples/blog/tsconfig.json index e51e06270..c2e5e77cd 100644 --- a/examples/blog/tsconfig.json +++ b/examples/blog/tsconfig.json @@ -1,5 +1,7 @@ { "extends": "astro/tsconfigs/base", + "include": ["**/*", ".astro/types.d.ts"], + "exclude": ["dist"], "compilerOptions": { "strictNullChecks": true } |