mirror of
https://github.com/LukeHagar/form.git
synced 2025-12-06 04:19:43 +00:00
* 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>
34 lines
981 B
JSON
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
|
|
}
|
|
}
|
|
}
|