-
Notifications
You must be signed in to change notification settings - Fork 9
/
tsconfig.base.json
56 lines (56 loc) · 2.59 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@siafoundation/request": ["libs/request/src/index.ts"],
"@siafoundation/data-sources": ["libs/data-sources/src/index.ts"],
"@siafoundation/design-system": ["libs/design-system/src/index.ts"],
"@siafoundation/fonts": ["libs/fonts/src/index.ts"],
"@siafoundation/next": ["libs/next/src/index.ts"],
"@siafoundation/react-core": ["libs/react-core/src/index.ts"],
"@siafoundation/hostd-types": ["libs/hostd-types/src/index.ts"],
"@siafoundation/hostd-react": ["libs/hostd-react/src/index.ts"],
"@siafoundation/hostd-js": ["libs/hostd-js/src/index.ts"],
"@siafoundation/react-icons": ["libs/react-icons/src/index.ts"],
"@siafoundation/renterd-types": ["libs/renterd-types/src/index.ts"],
"@siafoundation/renterd-react": ["libs/renterd-react/src/index.ts"],
"@siafoundation/renterd-js": ["libs/renterd-js/src/index.ts"],
"@siafoundation/walletd-types": ["libs/walletd-types/src/index.ts"],
"@siafoundation/walletd-react": ["libs/walletd-react/src/index.ts"],
"@siafoundation/walletd-js": ["libs/walletd-js/src/index.ts"],
"@siafoundation/explored-types": ["libs/explored-types/src/index.ts"],
"@siafoundation/explored-react": ["libs/explored-react/src/index.ts"],
"@siafoundation/explored-js": ["libs/explored-js/src/index.ts"],
// "buildLibsFromSource": false does not work with the next executor
// this is a very annoying workaround
"@siafoundation/sdk": ["dist/libs/sdk/index.esm.js"],
"@siafoundation/sia-central-types": [
"libs/sia-central-types/src/index.ts"
],
"@siafoundation/sia-central-js": ["libs/sia-central-js/src/index.ts"],
"@siafoundation/sia-central-react": [
"libs/sia-central-react/src/index.ts"
],
"@siafoundation/e2e": ["libs/e2e/src/index.ts"],
"@siafoundation/sia-central-mock": ["libs/sia-central-mock/src/index.ts"],
"@siafoundation/types": ["libs/types/src/index.ts"],
"@siafoundation/units": ["libs/units/src/index.ts"],
"@siafoundation/walletd-mock": ["libs/walletd-mock/src/index.ts"],
"@siafoundation/clusterd": ["libs/clusterd/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}