Spaces:
Running
Running
File size: 1,151 Bytes
170b9b6 7c0cbad 170b9b6 | 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 28 29 30 31 32 33 34 35 | {
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022"],
"module": "ESNext",
"moduleResolution": "Bundler",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"composite": false,
"resolveJsonModule": true,
"isolatedModules": true,
"verbatimModuleSyntax": false,
"baseUrl": ".",
"paths": {
"@courtmitra/contracts": ["packages/contracts/src/index.ts"],
"@courtmitra/domain": ["packages/domain/src/index.ts"],
"@courtmitra/ports": ["packages/ports/src/index.ts"],
"@courtmitra/adapters": ["packages/adapters/src/index.ts"],
"@courtmitra/db": ["packages/db/src/index.ts"],
"@courtmitra/prompts": ["packages/prompts/src/index.ts"],
"@courtmitra/worker": ["apps/worker/src/index.ts"],
"@courtmitra/ui": ["packages/ui/src/index.ts"]
}
},
"exclude": ["node_modules", "dist", ".next"]
}
|