-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
38 lines (38 loc) · 1.24 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
{
"extends": "@paperless/conventions",
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2021", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"noImplicitReturns": false,
"baseUrl": ".",
"paths": {
"@yugen/externals": ["libs/externals/src/index.ts"],
"@yugen/general": ["libs/general/src/index.ts"],
"@yugen/health": ["libs/health/src/index.ts"],
"@yugen/koto/*": ["apps/koto/src/*"],
"@yugen/kusari/*": ["apps/kusari/src/*"],
"@yugen/hoshi/*": ["apps/hoshi/src/*"],
"@yugen/kazu/*": ["apps/kazu/src/*"],
"@yugen/logs": ["libs/logs/src/index.ts"],
"@yugen/metrics": ["libs/metrics/src/index.ts"],
"@yugen/prisma/koto": ["libs/prisma/koto/src/index.ts"],
"@yugen/prisma/kusari": ["libs/prisma/kusari/src/index.ts"],
"@yugen/prisma/hoshi": ["libs/prisma/hoshi/src/index.ts"],
"@yugen/prisma/kazu": ["libs/prisma/kazu/src/index.ts"],
"@yugen/shared": ["libs/shared/src/index.ts"],
"@yugen/util": ["libs/util/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}