summaryrefslogtreecommitdiff
path: root/examples/with-mdx
diff options
context:
space:
mode:
Diffstat (limited to 'examples/with-mdx')
-rw-r--r--examples/with-mdx/package.json4
-rw-r--r--examples/with-mdx/src/env.d.ts1
-rw-r--r--examples/with-mdx/tsconfig.json4
3 files changed, 5 insertions, 4 deletions
diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json
index 8bf1ba448..8af8de316 100644
--- a/examples/with-mdx/package.json
+++ b/examples/with-mdx/package.json
@@ -11,9 +11,9 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/mdx": "^3.1.8",
+ "@astrojs/mdx": "^4.0.0-beta.2",
"@astrojs/preact": "^3.5.3",
- "astro": "^4.16.0",
+ "astro": "^5.0.0-beta.4",
"preact": "^10.24.2"
}
}
diff --git a/examples/with-mdx/src/env.d.ts b/examples/with-mdx/src/env.d.ts
deleted file mode 100644
index e16c13c69..000000000
--- a/examples/with-mdx/src/env.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-/// <reference path="../.astro/types.d.ts" />
diff --git a/examples/with-mdx/tsconfig.json b/examples/with-mdx/tsconfig.json
index d78f81ec4..f11a46c8e 100644
--- a/examples/with-mdx/tsconfig.json
+++ b/examples/with-mdx/tsconfig.json
@@ -1,3 +1,5 @@
{
- "extends": "astro/tsconfigs/base"
+ "extends": "astro/tsconfigs/base",
+ "include": [".astro/types.d.ts", "**/*"],
+ "exclude": ["dist"]
}