-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
61 lines (61 loc) · 3.01 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
56
57
58
59
60
61
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"resolveJsonModule": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2017",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"strictNullChecks": false,
"noImplicitReturns": false,
"noImplicitAny": false,
"baseUrl": ".",
"paths": {
"@ps2gg/alts/types": ["libs/alts/types/src/index.ts"],
"@ps2gg/alts/ws": ["libs/alts/ws/src/index.ts"],
"@ps2gg/census/api": ["libs/census/api/src/index.ts"],
"@ps2gg/census/collections": ["libs/census/collections/src/index.ts"],
"@ps2gg/census/controllers": ["libs/census/controllers/src/index.ts"],
"@ps2gg/census/types": ["libs/census/types/src/index.ts"],
"@ps2gg/common/constants": ["libs/common/constants/src/index.ts"],
"@ps2gg/common/http": ["libs/common/http/src/index.ts"],
"@ps2gg/common/logging": ["libs/common/logging/src/index.ts"],
"@ps2gg/common/types/client": ["libs/common/types/client/src/index.ts"],
"@ps2gg/common/util": ["libs/common/util/src/index.ts"],
"@ps2gg/discord/client": ["libs/discord/client/src/index.ts"],
"@ps2gg/discord/command": ["libs/discord/command/src/index.ts"],
"@ps2gg/discord/constants": ["libs/discord/constants/src/index.ts"],
"@ps2gg/discord/controllers": ["libs/discord/controllers/src/index.ts"],
"@ps2gg/discord/logging": ["libs/discord/logging/src/index.ts"],
"@ps2gg/discord/types": ["libs/discord/types/src/index.ts"],
"@ps2gg/discord/util": ["libs/discord/util/src/index.ts"],
"@ps2gg/events/subscriptions": ["libs/events/subscriptions/src/index.ts"],
"@ps2gg/events/types": ["libs/events/types/src/index.ts"],
"@ps2gg/events/ws": ["libs/events/ws/src/index.ts"],
"@ps2gg/friends/client": ["libs/friends/client/src/index.ts"],
"@ps2gg/friends/types": ["libs/friends/types/src/index.ts"],
"@ps2gg/nx/jest": ["libs/nx/jest/src/index.ts"],
"@ps2gg/nx/nest": ["libs/nx/nest/src/index.ts"],
"@ps2gg/nx/nest-app": ["libs/nx/nest-app/src/index.ts"],
"@ps2gg/nx/nest-domain-events": ["libs/nx/nest-domain-events/src/index.ts"],
"@ps2gg/nx/nest-microservice-rabbitmq": ["libs/nx/nest-microservice-rabbitmq/src/index.ts"],
"@ps2gg/peepo/types": ["libs/peepo/types/src/index.ts"],
"@ps2gg/players-api": ["libs/players/api/src/index.ts"],
"@ps2gg/players/client": ["libs/players/client/src/index.ts"],
"@ps2gg/players/types": ["libs/players/types/src/index.ts"],
"@ps2gg/population/client": ["libs/population/client/src/index.ts"],
"@ps2gg/population/types": ["libs/population/types/src/index.ts"],
"@ps2gg/users/client": ["libs/users/client/src/index.ts"],
"@ps2gg/users/types": ["libs/users/types/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp", "**/Migrations"]
}