-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
55 lines (55 loc) · 1.91 KB
/
tsconfig.base.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"strict": true,
"noUnusedLocals": false,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"exactOptionalPropertyTypes": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitAny": true,
"noUncheckedIndexedAccess": true,
"baseUrl": ".",
"paths": {
"@/atoms": ["apps/ui/src/components/atoms"],
"@/contexts": ["apps/ui/src/contexts"],
"@/graphql/*": ["apps/api/src/graphql/*"],
"@/hooks": ["apps/ui/src/hooks"],
"@/molecules": ["apps/ui/src/components/molecules"],
"@/organisms": ["apps/ui/src/components/organisms"],
"@/styles": ["apps/ui/src/styles"],
"@/typography": ["apps/ui/src/components/typography"],
"@/utils": ["apps/ui/src/utils"],
"@/views": ["apps/ui/src/components/views"],
"ai-tools": ["libs/ai-tools/src/index.ts"],
"analytics": ["libs/analytics/src/index.ts"],
"auth": ["libs/auth/src/index.ts"],
"characters": ["libs/characters/src/index.ts"],
"chat": ["libs/chat/src/index.ts"],
"game-session": ["libs/game-session/src/index.ts"],
"games": ["libs/games/src/index.ts"],
"notifications": ["libs/notifications/src/index.ts"],
"payments": ["libs/payments/src/index.ts"],
"profile": ["libs/profile/src/index.ts"],
"video": ["libs/video/src/index.ts"],
"~api/*": ["apps/api/src/*"],
"~common": ["libs/common/src/index.ts"],
"~ui/*": ["apps/ui/src/*"]
}
},
"exclude": ["node_modules", "tmp"]
}