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