clawhub/tsconfig.oxlint.json
Peter Steinberger 5c28a2a252 refactor: extract @clawdhub/schema package
- Move ArkType schemas into packages/schema

- Wire app/convex/cli imports to workspace dep

- Add workspaces + update lint/coverage

- Build schema dist (tracked)
2026-01-04 03:49:57 +01:00

17 lines
434 B
JSON

{
"include": ["src", "convex", "packages/clawdhub/src", "packages/schema/src"],
"compilerOptions": {
"target": "ES2022",
"jsx": "react-jsx",
"module": "ESNext",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"types": ["vite/client"],
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": false,
"noEmit": true,
"skipLibCheck": true,
"strict": true
}
}