diff options
author | 2024-09-11 14:40:15 +0200 | |
---|---|---|
committer | 2024-09-11 14:40:15 +0200 | |
commit | 74722cb81c46d4d29c8c5a2127f896da4d8d3235 (patch) | |
tree | 264e7f3eacc34c4967b2c36fa8de67d44a7a213f /examples/basics | |
parent | 518433e433fe69ee3bbbb1f069181cd9eb69ec9a (diff) | |
download | astro-74722cb81c46d4d29c8c5a2127f896da4d8d3235.tar.gz astro-74722cb81c46d4d29c8c5a2127f896da4d8d3235.tar.zst astro-74722cb81c46d4d29c8c5a2127f896da4d8d3235.zip |
feat(next): reference astro/client from astro/config (#11925)
Diffstat (limited to 'examples/basics')
-rw-r--r-- | examples/basics/src/env.d.ts | 1 | ||||
-rw-r--r-- | examples/basics/tsconfig.json | 2 |
2 files changed, 1 insertions, 2 deletions
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 d2e51fb46..f11a46c8e 100644 --- a/examples/basics/tsconfig.json +++ b/examples/basics/tsconfig.json @@ -1,5 +1,5 @@ { "extends": "astro/tsconfigs/base", - "include": ["**/*", ".astro/types.d.ts"], + "include": [".astro/types.d.ts", "**/*"], "exclude": ["dist"] } |