File size: 940 Bytes
dd480ef
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  // "extends": "../../tsconfig.json",
  "compilerOptions": {
    "target": "ES2022",
    "module": "CommonJS",
    "moduleResolution": "node",
    "lib": ["ES2022"],
    "outDir": "./dist",
    "rootDir": "../../",

    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "resolveJsonModule": true,
    "paths": {
      "@wfo/apps/worker/*": ["../../apps/worker/*"],
      "@wfo/core/*": ["../../core/*"],
      "@wfo/integrations/*": ["../../integrations/*"],
      "@wfo/validation/*": ["../../validation/*"],
      "@wfo/observability/*": ["../../observability/*"],
      "@wfo/knowledge/*": ["../../knowledge/*"],
      "@wfo/config/*": ["../../config/*"]
    }
  },
  "include": ["src/**/*", "../../core/**/*", "../../integrations/**/*", "../../validation/**/*", "../../observability/**/*", "../../knowledge/**/*", "../../config/**/*", "../../apps/worker/src/types/**/*"],
  "exclude": ["node_modules", "dist"]
}