-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathtsconfig.base.json
81 lines (81 loc) · 4.38 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2022",
"module": "esnext",
"lib": ["ES2022", "dom"],
"typeRoots": ["./node_modules/@types", "./node_modules/@overwolf"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@components/*": ["libs/legacy/feature-shell/src/lib/js/components/*"],
"@directives/*": ["libs/legacy/feature-shell/src/lib/js/directives/*"],
"@firestone/achievements/common": ["libs/achievements/common/src/index.ts"],
"@firestone/achievements/data-access": ["libs/achievements/data-access/src/index.ts"],
"@firestone/achievements/view": ["libs/achievements/view/src/index.ts"],
"@firestone/app/common": ["libs/app/common/src/index.ts"],
"@firestone/arena/common": ["libs/arena/common/src/index.ts"],
"@firestone/battlegrounds/common": ["libs/battlegrounds/common/src/index.ts"],
"@firestone/battlegrounds/core": ["libs/battlegrounds/core/src/index.ts"],
"@firestone/battlegrounds/data-access": ["libs/battlegrounds/data-access/src/index.ts"],
"@firestone/battlegrounds/simulator": ["libs/battlegrounds/simulator/src/index.ts"],
"@firestone/battlegrounds/view": ["libs/battlegrounds/view/src/index.ts"],
"@firestone/collection/common": ["libs/collection/common/src/index.ts"],
"@firestone/collection/view": ["libs/collection/view/src/index.ts"],
"@firestone/communities/common": ["libs/communities/common/src/index.ts"],
"@firestone/constructed/common": ["libs/constructed/common/src/index.ts"],
"@firestone/discord": ["libs/discord/src/index.ts"],
"@firestone/duels/data-access": ["libs/duels/data-access/src/index.ts"],
"@firestone/duels/general": ["libs/duels/general/src/index.ts"],
"@firestone/duels/view": ["libs/duels/view/src/index.ts"],
"@firestone/game-state": ["libs/game-state/src/index.ts"],
"@firestone/legacy/feature-shell": ["libs/legacy/feature-shell/src/index.ts"],
"@firestone/mainwindow/common": ["libs/mainwindow/common/src/index.ts"],
"@firestone/memory": ["libs/memory/src/index.ts"],
"@firestone/mercenaries/common": ["libs/mercenaries/common/src/index.ts"],
"@firestone/mods/common": ["libs/mods/common/src/index.ts"],
"@firestone/profile/data-access": ["libs/profile/data-access/src/index.ts"],
"@firestone/replay/coliseum": ["libs/replay/coliseum/src/index.ts"],
"@firestone/settings": ["libs/settings/src/index.ts"],
"@firestone/shared/assets": ["libs/shared/assets/src/index.ts"],
"@firestone/shared/common/service": ["libs/shared/common/service/src/index.ts"],
"@firestone/shared/common/view": ["libs/shared/common/view/src/index.ts"],
"@firestone/shared/framework/common": ["libs/shared/framework/common/src/index.ts"],
"@firestone/shared/framework/core": ["libs/shared/framework/core/src/index.ts"],
"@firestone/shared/styles": ["libs/shared/styles/src/index.ts"],
"@firestone/stats/common": ["libs/stats/common/src/index.ts"],
"@firestone/stats/data-access": ["libs/stats/data-access/src/index.ts"],
"@firestone/twitch/common": ["libs/twitch/common/src/index.ts"],
"@firestone/website/battlegrounds": ["libs/website/battlegrounds/src/index.ts"],
"@firestone/website/core": ["libs/website/core/src/index.ts"],
"@firestone/website/duels": ["libs/website/duels/src/index.ts"],
"@firestone/website/profile": ["libs/website/profile/src/index.ts"],
"@legacy-import/*": ["libs/legacy/feature-shell/*"],
"@mails/*": ["libs/legacy/feature-shell/src/lib/libs/mails/*"],
"@models/*": ["libs/legacy/feature-shell/src/lib/js/models/*"],
"@mods": ["libs/legacy/feature-shell/src/lib/libs/mods"],
"@packs/*": ["libs/legacy/feature-shell/src/lib/libs/packs/*"],
"@pipes/*": ["libs/legacy/feature-shell/src/lib/js/pipes/*"],
"@services/*": ["libs/legacy/feature-shell/src/lib/js/services/*"],
"@tavern-brawl/*": ["libs/legacy/feature-shell/src/lib/libs/tavern-brawl/*"],
"crypto": ["./node_modules/crypto-browserify"],
"stream": ["./node_modules/stream-browserify"]
},
"strict": false,
"noImplicitAny": false,
"noImplicitOverride": false,
"strictPropertyInitialization": false,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"noPropertyAccessFromIndexSignature": false
},
"exclude": ["node_modules", "tmp"]
}