-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
44 lines (44 loc) · 1.34 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2021",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strict": true,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"paths": {
"types": ["types/*"],
"@sol/admin/*": ["apps/admin/src/*"],
"@sol/corpus/*": ["apps/corpus/src/*"],
"@sol/definition": ["libs/definition/index.ts"],
"@sol/errors/*": ["libs/errors/*"],
"@sol/domain/*": ["libs/domain/*"],
"@sol/env": ["libs/env/index.ts"],
"@sol/postgres": ["libs/postgres/src"],
"@sol/postgres/*": ["libs/postgres/src/*"],
"@sol/result": ["libs/result/index.ts"],
"@sol/oauth": ["libs/oauth/src"],
"@sol/oauth/*": ["libs/oauth/src/*"],
"@sol/jwt": ["libs/jwt/src"],
"@sol/jwt/*": ["libs/jwt/src/*"],
"@sol/cookies": ["libs/cookies/src"],
"@sol/cookies/*": ["libs/cookies/src/*"],
"@sol/redis": ["libs/redis/src"],
"@sol/redis/*": ["libs/redis/src/*"]
},
"typeRoots": [
"types",
"node_modules/@types"
]
}
}