forked from swaponline/MultiCurrencyWallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
71 lines (68 loc) · 2.62 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
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
{
"compilerOptions": {
"baseUrl": "./",
"module": "esnext",
"target": "esnext",
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"allowJs": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"noEmit": true,
"sourceMap": true,
"noImplicitAny": false,
"strictNullChecks": true,
"experimentalDecorators": true,
"jsx": "react-jsx",
"types": ["jest", "node"],
"lib": ["dom", "esnext"],
"paths": {
"shared": ["src/front/shared"],
"shared/*": ["src/front/shared/*"],
"redux/*": ["src/front/shared/redux/*"],
"components": ["src/front/shared/components"],
"components/*": ["src/front/shared/components/*"],
"containers": ["src/front/shared/containers"],
"containers/*": ["src/front/shared/containers/*"],
"decorators": ["src/front/shared/decorators"],
"decorators/*": ["src/front/shared/decorators/*"],
"helpers": ["src/front/shared/helpers"],
"helpers/*": ["src/front/shared/helpers/*"],
"instances": ["src/front/shared/instances"],
"instances/*": ["src/front/shared/instances/*"],
"localisation": ["src/front/shared/localisation"],
"localisation/*": ["src/front/shared/localisation/*"],
"pages": ["src/front/shared/pages"],
"pages/*": ["src/front/shared/pages/*"],
"app-config": ["src/front/local_modules/app-config"],
"plugins/*": ["src/front/shared/plugins/*"],
"local_modules/*": ["src/front/local_modules/*"],
"images": ["src/front/shared/images"],
"images/*": ["src/front/shared/images/*"],
"swap.app": ["src/core/swap.app"],
"swap.app/*": ["src/core/swap.app/*"],
"swap.auth": ["src/core/swap.auth"],
"swap.auth/*": ["src/core/swap.auth/*"],
"swap.flows": ["src/core/swap.flows"],
"swap.flows/*": ["src/core/swap.flows/*"],
"swap.orders": ["src/core/swap.orders"],
"swap.orders/*": ["src/core/swap.orders/*"],
"swap.room": ["src/core/swap.room"],
"swap.room/*": ["src/core/swap.room/*"],
"swap.swap": ["src/core/swap.swap"],
"swap.swap/*": ["src/core/swap.swap/*"],
"swap.swaps": ["src/core/swap.swaps"],
"swap.swaps/*": ["src/core/swap.swaps/*"],
"simple.swap.core": ["src/core/simple/src"],
"domain": ["src/common/domain"],
"domain/*": ["src/common/domain/*"],
"common": ["src/common/"],
"common/*": ["src/common/*"]
}
},
"include": ["src/**/*", "tests"],
"exclude": ["node_modules"],
"typeRoots": ["node_modules/@0x/typescript-typings/types", "node_modules/@types"]
}