diff options
author | 2024-04-04 17:58:30 +0000 | |
---|---|---|
committer | 2024-04-04 17:58:30 +0000 | |
commit | 9a1aee80a527a1b211eb9bb1922115866ecfb14e (patch) | |
tree | 76320c36ccb491a41803fae65e720f6d0f3665ed /packages/integrations/react/src | |
parent | 14f1d49a10541fecc4c10def8a094322442ccf23 (diff) | |
download | astro-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.ts | 5 |
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; }; |