mirror of
https://github.com/LukeHagar/form.git
synced 2025-12-09 12:27:44 +00:00
* fix: bundler errors in React and Vue adapters should now be resolved * chore: replace use-isomorphic-layout-effect with dep for RN support
10 lines
268 B
JavaScript
10 lines
268 B
JavaScript
// @ts-check
|
|
|
|
import { defineConfig } from 'tsup'
|
|
import { legacyConfig, modernConfig } from '../../scripts/getTsupConfig.js'
|
|
|
|
export default defineConfig([
|
|
modernConfig({ entry: ['src/*.ts', 'src/*.tsx'] }),
|
|
legacyConfig({ entry: ['src/*.ts', 'src/*.tsx'] }),
|
|
])
|