(entry: Record<string, string>, development: boolean)
| 40 | }) |
| 41 | |
| 42 | const jsxConfig = (entry: Record<string, string>, development: boolean) => ({ |
| 43 | ...baseConfig, |
| 44 | entry, |
| 45 | format: 'esm' as const, |
| 46 | clean: false, |
| 47 | dts: false, |
| 48 | env: environment(development), |
| 49 | outExtensions: () => ({ js: '.jsx' }), |
| 50 | plugins: [], |
| 51 | }) |
| 52 | |
| 53 | export default defineConfig([ |
| 54 | compiledConfig({ index: 'src/index.tsx' }, false, true), |
no test coverage detected