diff options
Diffstat (limited to 'examples/basics')
-rw-r--r-- | examples/basics/package.json | 3 | ||||
-rw-r--r-- | examples/basics/src/env.d.ts | 1 | ||||
-rw-r--r-- | examples/basics/tsconfig.json | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/examples/basics/package.json b/examples/basics/package.json index 6a068e85d..5f78dd4ed 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -5,12 +5,11 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" }, "dependencies": { - "astro": "^4.16.7" + "astro": "^5.0.0-beta.5" } } 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"] } |