-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
27 lines (27 loc) · 899 Bytes
/
tsconfig.json
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
{
"compilerOptions": {
"baseUrl": ".",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": true,
"strictBindCallApply": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"paths": {
"@admin/*": ["./apps/admin/*"],
"@client/*": ["./apps/client/*"],
"@server/*": ["./apps/server/src/*"],
"@domain/*": ["./apps/server/src/domain/*"],
"@shared/*": ["./apps/server/src/shared/*"],
"@filters/*": ["./apps/server/src/filters/*"],
"@helpers/*": ["./apps/server/src/helpers/*"],
"@decorators/*": ["./apps/server/src/decorators/*"],
"@constants/*": ["./apps/server/src/constants/*"],
"@trpc/*": ["./apps/server/src/domain/trpc/*"]
}
}
}