forked from ceramicnetwork/js-ceramic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
42 lines (42 loc) · 1.45 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
{
"compilerOptions": {
"module": "ES2020",
"target": "ES2020",
"resolveJsonModule": false,
"moduleResolution": "Node",
"allowSyntheticDefaultImports": true,
"declaration": true,
"declarationMap": true,
"skipLibCheck": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"baseUrl": "./packages",
"typeRoots": ["./types", "node_modules/@types"],
"paths": {
"@ceramicnetwork/*": ["./*/"]
}
},
"exclude": ["node_modules", "coverage", "**/*.spec.ts", "**/*.test.ts", "**/__mocks__/*"],
"references": [
{ "path": "./packages/core" },
{ "path": "./packages/3id-did-resolver" },
{ "path": "./packages/ipfs-daemon" },
{ "path": "./packages/ipfs-topology" },
{ "path": "./packages/http-client" },
{ "path": "./packages/streamid" },
{ "path": "./packages/common" },
{ "path": "./packages/doctype-caip10-link" },
{ "path": "./packages/doctype-caip10-link-handler" },
{ "path": "./packages/doctype-tile" },
{ "path": "./packages/doctype-tile-handler" },
{ "path": "./packages/logger" },
{ "path": "./packages/pinning-aggregation" },
{ "path": "./packages/pinning-ipfs-backend" },
{ "path": "./packages/pinning-powergate-backend" },
{ "path": "./packages/pinning-crust-backend" },
{ "path": "./packages/blockchain-utils-linking" },
{ "path": "./packages/blockchain-utils-validation" }
]
}