mirror of
https://github.com/LukeHagar/form.git
synced 2025-12-09 20:37:47 +00:00
fix: bundler errors in React and Vue adapters should now be resolved (#447)
* fix: bundler errors in React and Vue adapters should now be resolved * chore: replace use-isomorphic-layout-effect with dep for RN support
This commit is contained in:
13
packages/vue-form/tsconfig.eslint.json
Normal file
13
packages/vue-form/tsconfig.eslint.json
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"extends": "./tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"noEmit": true
|
||||
},
|
||||
"include": [
|
||||
"**/*.ts",
|
||||
"**/*.tsx",
|
||||
".eslintrc.cjs",
|
||||
"test-setup.ts",
|
||||
"tsup.config.js"
|
||||
]
|
||||
}
|
||||
@@ -4,6 +4,6 @@ import { defineConfig } from 'tsup'
|
||||
import { legacyConfig, modernConfig } from '../../scripts/getTsupConfig.js'
|
||||
|
||||
export default defineConfig([
|
||||
modernConfig({ entry: ['src/*.ts'] }),
|
||||
legacyConfig({ entry: ['src/*.ts'] }),
|
||||
modernConfig({ entry: ['src/*.ts', 'src/*.tsx'] }),
|
||||
legacyConfig({ entry: ['src/*.ts', 'src/*.tsx'] }),
|
||||
])
|
||||
|
||||
Reference in New Issue
Block a user