24 lines
627 B
JSON
24 lines
627 B
JSON
{
|
|
"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": {
|
|
"@peezy.tech/codex-flows": ["../../packages/codex-client/src/index.ts"],
|
|
"@peezy.tech/codex-flows/*": ["../../packages/codex-client/src/*"]
|
|
}
|
|
},
|
|
"include": ["src", "test"]
|
|
}
|