codex-flows/apps/cli/tsconfig.json

25 lines
627 B
JSON
Raw Normal View History

2026-05-12 15:15:09 +00:00
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022"],
"module": "ESNext",
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
2026-05-12 15:34:46 +00:00
"@peezy.tech/codex-flows": ["../../packages/codex-client/src/index.ts"],
"@peezy.tech/codex-flows/*": ["../../packages/codex-client/src/*"]
2026-05-12 15:15:09 +00:00
}
},
"include": ["src", "test"]
}