diff options
Diffstat (limited to 'examples/portfolio')
-rw-r--r-- | examples/portfolio/package.json | 2 | ||||
-rw-r--r-- | examples/portfolio/src/env.d.ts | 1 | ||||
-rw-r--r-- | examples/portfolio/tsconfig.json | 4 |
3 files changed, 4 insertions, 3 deletions
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index c78a51b7c..5d16b614a 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^4.16.0" + "astro": "^5.0.0-beta.4" } } diff --git a/examples/portfolio/src/env.d.ts b/examples/portfolio/src/env.d.ts deleted file mode 100644 index e16c13c69..000000000 --- a/examples/portfolio/src/env.d.ts +++ /dev/null @@ -1 +0,0 @@ -/// <reference path="../.astro/types.d.ts" /> diff --git a/examples/portfolio/tsconfig.json b/examples/portfolio/tsconfig.json index d78f81ec4..f11a46c8e 100644 --- a/examples/portfolio/tsconfig.json +++ b/examples/portfolio/tsconfig.json @@ -1,3 +1,5 @@ { - "extends": "astro/tsconfigs/base" + "extends": "astro/tsconfigs/base", + "include": [".astro/types.d.ts", "**/*"], + "exclude": ["dist"] } |