mirror of
https://github.com/LukeHagar/form.git
synced 2025-12-06 04:19:43 +00:00
* chore: inital work to migrate to Query's alpha package setup * chore: update deps * chore: fix build issues * chore: disable no-children-prop rule
13 lines
253 B
JavaScript
13 lines
253 B
JavaScript
// @ts-check
|
|
|
|
import { defineConfig } from 'rollup'
|
|
import { buildConfigs } from '../../scripts/getRollupConfig.js'
|
|
|
|
export default defineConfig(
|
|
buildConfigs({
|
|
name: 'react-form',
|
|
outputFile: 'index',
|
|
entryFile: './src/index.ts',
|
|
}),
|
|
)
|