codex-flows/packages/flow-backend-convex/tsconfig.json
matamune f48434932d
Some checks failed
ci / check (push) Failing after 19s
Add Convex flow backend component
2026-05-13 12:59:04 +00:00

24 lines
599 B
JSON

{
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"target": "ES2022",
"lib": ["ESNext", "DOM"],
"strict": true,
"skipLibCheck": true,
"noUncheckedIndexedAccess": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"types": ["node", "bun"],
"baseUrl": ".",
"paths": {
"@peezy.tech/flow-runtime": ["../flow-runtime/src/index.ts"]
}
},
"include": ["src/**/*.ts", "test/**/*.ts"]
}