-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
26 lines (26 loc) · 857 Bytes
/
tsconfig.base.json
File metadata and controls
26 lines (26 loc) · 857 Bytes
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
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": ["ES2022", "DOM"],
"strict": true,
"noImplicitOverride": true,
"noUncheckedIndexedAccess": true,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true,
"declaration": true,
"baseUrl": ".",
"paths": {
"@pocket-cto/domain": ["packages/domain/src/index.ts"],
"@pocket-cto/config": ["packages/config/src/index.ts"],
"@pocket-cto/db": ["packages/db/src/index.ts"],
"@pocket-cto/codex-runtime": ["packages/codex-runtime/src/index.ts"],
"@pocket-cto/stack-packs": ["packages/stack-packs/src/index.ts"],
"@pocket-cto/testkit": ["packages/testkit/src/index.ts"]
}
}
}