diff options
Diffstat (limited to 'examples/basics')
-rw-r--r-- | examples/basics/package.json | 2 | ||||
-rw-r--r-- | examples/basics/tsconfig.json | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/examples/basics/package.json b/examples/basics/package.json index a6bbf7255..d8be60597 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^4.15.4" + "astro": "^5.0.0-alpha.6" } } diff --git a/examples/basics/tsconfig.json b/examples/basics/tsconfig.json index d78f81ec4..d2e51fb46 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"] } |