| { |
| "compilerOptions": { |
| "target": "ES2022", |
| "module": "ES2022", |
| "moduleResolution": "bundler", |
| "lib": ["ES2022"], |
| "strict": true, |
| "noUncheckedIndexedAccess": true, |
| "noImplicitOverride": true, |
| "exactOptionalPropertyTypes": false, |
| "noFallthroughCasesInSwitch": true, |
| "forceConsistentCasingInFileNames": true, |
| "skipLibCheck": true, |
| "declaration": true, |
| "declarationMap": true, |
| "sourceMap": true, |
| "outDir": "./dist", |
| "rootDir": "./", |
| "paths": { |
| "@wfo/core/*": ["./core/*"], |
| "@wfo/integrations/*": ["./integrations/*"], |
| "@wfo/validation/*": ["./validation/*"], |
| "@wfo/observability/*": ["./observability/*"], |
| "@wfo/knowledge/*": ["./knowledge/*"], |
| "@wfo/config/*": ["./config/*"] |
| } |
| }, |
| "include": ["apps/**/*", "core/**/*", "integrations/**/*", "validation/**/*", "observability/**/*", "knowledge/**/*", "config/**/*"], |
| "exclude": ["node_modules", "dist", "**/*.test.ts"] |
| } |
|
|