This repository was archived by the owner on Apr 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 1.37 KB
/
tsconfig.json
File metadata and controls
33 lines (33 loc) · 1.37 KB
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
{
"extends": "./tsconfig.build.json",
"compilerOptions": {
"baseUrl": ".",
// Configure imports and their directory resolution
"paths": {
"@shapeshiftoss/asset-service/*": ["packages/asset-service"],
"@shapeshiftoss/caip/*": ["packages/caip"],
"@shapeshiftoss/chain-adapters/*": ["packages/chain-adapters"],
"@shapeshiftoss/investory-foxy/*": ["packages/investory-foxy"],
"@shapeshiftoss/investory-yearn/*": ["packages/investory-yearn"],
"@shapeshiftoss/investory-idle/*": ["packages/investory-idle"],
"@shapeshiftoss/logger/*": ["packages/logger"],
"@shapeshiftoss/errors/*": ["packages/errors"],
"@shapeshiftoss/market-service/*": ["packages/market-service"],
"@shapeshiftoss/swapper/*": ["packages/swapper"],
"@shapeshiftoss/types/*": ["packages/types"],
"@shapeshiftoss/unchained-client/*": ["packages/unchained-client"]
},
"noEmit": true
},
"watchOptions": {
// Use native file system events for files and directories
"watchFile": "useFsEvents",
"watchDirectory": "useFsEvents",
// Poll files for updates more frequently
// when they're updated a lot. (use as fallback)
"fallbackPolling": "dynamicPriority",
// Don't coalesce watch notification
"synchronousWatchDirectory": true
},
"exclude": ["node_modules", "**/*.test.ts", "**/*.spec.ts", "**/__mocks__"]
}