-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
39 lines (39 loc) · 1.45 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2017",
"lib": ["es2019"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"resolveJsonModule": true,
"baseUrl": ".",
"paths": {
"@baf-wallet/api-client": ["libs/api-client/src/index.ts"],
"@baf-wallet/redirect-generator": [
"libs/redirect-generator/src/index.ts"
],
"@baf-wallet/interfaces": ["libs/interfaces/src/index.ts"],
"@baf-wallet/chain-info": ["libs/chain-info/src/index.ts"],
"@baf-wallet/near": ["libs/near/src/index.ts"],
"@baf-wallet/near/web": ["libs/near/src/web/index.ts"],
"@baf-wallet/near/web/*": ["libs/near/src/web/*"],
"@baf-wallet/utils": ["libs/utils/src/index.ts"],
"@baf-wallet/torus/web": ["libs/torus/src/web/index.ts"],
"@baf-wallet/torus": ["libs/torus/src/common/index.ts"],
"@baf-wallet/crypto": ["libs/crypto/src/index.ts"],
"@baf-wallet/base-components/*": ["libs/base-components/src/*"],
"@baf-wallet/errors": ["libs/errors/src/index.ts"],
"@baf-wallet/global-state": ["libs/global-state/src/index.ts"],
"@baf-wallet/global-contract": ["libs/global-contract/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}