-
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) · 801 Bytes
/
tsconfig.base.json
File metadata and controls
26 lines (26 loc) · 801 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": {
"isolatedModules": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "bundler",
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"strict": true,
"target": "ES2022",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"baseUrl": ".",
"paths": {
"@credopass/lib/*": ["packages/lib/src/*"],
"@credopass/api-client": ["packages/api-client/src/client.ts"],
"@credopass/api-client/*": ["packages/api-client/src/*"],
"@credopass/ui/*": ["packages/ui/src/*"],
"@credopass/ui-mobile/*": ["packages/ui-mobile/src/*"]
}
}
}