diff options
Diffstat (limited to 'examples/integration')
-rw-r--r-- | examples/integration/index.ts | 4 | ||||
-rw-r--r-- | examples/integration/package.json | 2 | ||||
-rw-r--r-- | examples/integration/tsconfig.json | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/examples/integration/index.ts b/examples/integration/index.ts index 8b34afd23..1fafd4e15 100644 --- a/examples/integration/index.ts +++ b/examples/integration/index.ts @@ -11,8 +11,8 @@ export default function createIntegration(): AstroIntegration { // https://github.com/withastro/astro/blob/main/packages/integrations/react/src/index.ts }, 'astro:build:setup': () => { - // See the @astrojs/lit integration for an example - // https://github.com/withastro/astro/blob/main/packages/integrations/lit/src/index.ts + // See the @astrojs/react integration for an example + // https://github.com/withastro/astro/blob/main/packages/integrations/react/src/index.ts }, 'astro:build:done': () => { // See the @astrojs/partytown integration for an example diff --git a/examples/integration/package.json b/examples/integration/package.json index 88be398e5..87a97ea20 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^4.16.16" + "astro": "^5.0.0-beta.11" }, "peerDependencies": { "astro": "^4.0.0" diff --git a/examples/integration/tsconfig.json b/examples/integration/tsconfig.json index d78f81ec4..bcbf8b509 100644 --- a/examples/integration/tsconfig.json +++ b/examples/integration/tsconfig.json @@ -1,3 +1,3 @@ { - "extends": "astro/tsconfigs/base" + "extends": "astro/tsconfigs/strict" } |