Files
form/tsconfig.base.json
Aadit Olkar 31f6261208 feat: valibot form adapter (#499)
* feat: mount method on FormApi

* fix solid-form test case

* fix: added form.mount() to tests

* feat: valibot-form-adapter

* chore: add missing config items

* docs: add Valibot React example

* docs: add Solid Valibot example

* docs: add valibot Vue example

* fix: valibot async adapter now works

* docs: add docs for valibot adapter

---------

Co-authored-by: Corbin Crutchley <git@crutchcorn.dev>
2023-11-05 06:27:45 -08:00

34 lines
981 B
JSON

{
"compilerOptions": {
"lib": ["ES2022"],
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"strict": true,
"noUncheckedIndexedAccess": true,
"strictNullChecks": true,
"declaration": true,
"noImplicitReturns": true,
"esModuleInterop": true,
"skipLibCheck": true,
"baseUrl": ".",
"allowUnreachableCode": true,
"paths": {
"@tanstack/form-core": ["packages/form-core"],
"@tanstack/react-form": ["packages/react-form"],
"@tanstack/vue-form": ["packages/vue-form"],
"@tanstack/solid-form": ["packages/solid-form"],
"@tanstack/yup-form-adapter": ["packages/yup-form-adapter"],
"@tanstack/zod-form-adapter": ["packages/zod-form-adapter"],
"@tanstack/valibot-form-adapter": ["packages/valibot-form-adapter"]
}
},
"ts-node": {
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true
}
}
}