forked from blockchain/blockchain-wallet-v4-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
38 lines (38 loc) · 1.26 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": "./packages",
"esModuleInterop": true,
"jsx": "react",
"module": "esnext",
"moduleResolution": "node",
"noImplicitAny": false,
"noResolve": false,
"outDir": "./dist",
"removeComments": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictNullChecks": true,
"target": "es6",
"paths": {
"@core": ["blockchain-wallet-v4/src"],
"@core/*": ["blockchain-wallet-v4/src/*"],
"components/*": ["blockchain-wallet-v4-frontend/src/components/*"],
"middleware/*": ["blockchain-wallet-v4-frontend/src/middleware/*"],
"data": ["blockchain-wallet-v4-frontend/src/data"],
"data/*": ["blockchain-wallet-v4-frontend/src/data/*"],
"layouts/*": ["blockchain-wallet-v4-frontend/src/layouts/*"],
"providers/*": ["blockchain-wallet-v4-frontend/src/providers/*"],
"services/*": ["blockchain-wallet-v4-frontend/src/services/*"],
"utils/*": ["blockchain-wallet-v4-frontend/src/utils/*"]
}
},
"include": [
"packages/blockchain-info-components/src/",
"packages/blockchain-wallet-v4-frontend/src/",
"packages/blockchain-wallet-v4/src/",
"typings/*"
]
}