diff options
Diffstat (limited to 'examples/with-markdoc')
-rw-r--r-- | examples/with-markdoc/package.json | 4 | ||||
-rw-r--r-- | examples/with-markdoc/src/env.d.ts | 1 | ||||
-rw-r--r-- | examples/with-markdoc/tsconfig.json | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json index cf3ee54ff..65a26dd20 100644 --- a/examples/with-markdoc/package.json +++ b/examples/with-markdoc/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "@astrojs/markdoc": "^0.11.4", - "astro": "^4.15.9" + "@astrojs/markdoc": "^0.11.5-beta.0", + "astro": "^5.0.0-beta.2" } } diff --git a/examples/with-markdoc/src/env.d.ts b/examples/with-markdoc/src/env.d.ts deleted file mode 100644 index e16c13c69..000000000 --- a/examples/with-markdoc/src/env.d.ts +++ /dev/null @@ -1 +0,0 @@ -/// <reference path="../.astro/types.d.ts" /> diff --git a/examples/with-markdoc/tsconfig.json b/examples/with-markdoc/tsconfig.json index e51e06270..676d1945a 100644 --- a/examples/with-markdoc/tsconfig.json +++ b/examples/with-markdoc/tsconfig.json @@ -1,5 +1,7 @@ { "extends": "astro/tsconfigs/base", + "include": [".astro/types.d.ts", "**/*"], + "exclude": ["dist"], "compilerOptions": { "strictNullChecks": true } |