summaryrefslogtreecommitdiff
path: root/packages/integrations/react/src
diff options
context:
space:
mode:
authorGravatar fightingcat <matthewp@users.noreply.github.com> 2024-04-04 17:58:30 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2024-04-04 17:58:30 +0000
commit9a1aee80a527a1b211eb9bb1922115866ecfb14e (patch)
tree76320c36ccb491a41803fae65e720f6d0f3665ed /packages/integrations/react/src
parent14f1d49a10541fecc4c10def8a094322442ccf23 (diff)
downloadastro-9a1aee80a527a1b211eb9bb1922115866ecfb14e.tar.gz
astro-9a1aee80a527a1b211eb9bb1922115866ecfb14e.tar.zst
astro-9a1aee80a527a1b211eb9bb1922115866ecfb14e.zip
[ci] format
Diffstat (limited to 'packages/integrations/react/src')
-rw-r--r--packages/integrations/react/src/index.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/integrations/react/src/index.ts b/packages/integrations/react/src/index.ts
index b4cfcc039..c6bf1a200 100644
--- a/packages/integrations/react/src/index.ts
+++ b/packages/integrations/react/src/index.ts
@@ -3,7 +3,10 @@ import type { AstroIntegration } from 'astro';
import { version as ReactVersion } from 'react-dom';
import type * as vite from 'vite';
-export type ReactIntegrationOptions = Pick<ViteReactPluginOptions, 'include' | 'exclude' | 'babel'> & {
+export type ReactIntegrationOptions = Pick<
+ ViteReactPluginOptions,
+ 'include' | 'exclude' | 'babel'
+> & {
experimentalReactChildren?: boolean;
};