-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.build.json
46 lines (46 loc) · 1.36 KB
/
tsconfig.build.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
{
"compilerOptions": {
"skipLibCheck": true,
"declaration": true,
"downlevelIteration": true,
"target": "ES2019",
"baseUrl": ".",
"module": "commonjs",
"removeComments": false,
"moduleResolution": "node",
"preserveConstEnums": true,
"sourceMap": true,
"strict": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"declarationMap": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitAny": false,
"resolveJsonModule": true,
"jsx": "react",
"composite": true,
"paths": {
"@interfaces/*": ["./interfaces/*"],
"@implementations/*": ["./implementations/*"],
"@tests/*": ["../test/*"],
"@mock/*": ["../test/mock/*"],
"@mobile-integration": ["./packages/mobile-integration/src/*"],
"@mobileApp/*": ["./packages/mobileApp/src/*"],
"@web-integration/*": ["./*"],
"@web-ui/*": ["./*"],
"@gateway-connector/*": ["./*"],
"@gateway-iframe/*": ["./*"],
"@core-iframe/*": ["./*"],
"@test-gateway/*": ["./*"],
"@test-gateway-connector/*": ["./*"],
"@utils/*": ["./*"],
"@objects/*": ["./*"],
"@user-dashboard/*": ["./*"],
"@storybook/*": ["./*"],
"@governance-sdk/*": ["./*"]
}
}
}