mirror of
https://github.com/LukeHagar/form.git
synced 2025-12-09 20:37:47 +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
252 B
JavaScript
13 lines
252 B
JavaScript
// @ts-check
|
|
|
|
import { defineConfig } from 'rollup'
|
|
import { buildConfigs } from '../../scripts/getRollupConfig.js'
|
|
|
|
export default defineConfig(
|
|
buildConfigs({
|
|
name: 'form-core',
|
|
outputFile: 'index',
|
|
entryFile: './src/index.ts',
|
|
}),
|
|
)
|