forked from ceramicnetwork/js-ceramic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
50 lines (50 loc) · 1.43 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
43
44
45
46
47
48
49
50
{
"compilerOptions": {
"module": "commonjs",
"lib": ["es6", "dom", "esnext"],
"target": "ES2018",
"declaration": true,
"declarationMap": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"removeComments": true,
"esModuleInterop": 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/key-did-resolver" },
{ "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/blockchain-utils-linking" },
{ "path": "./packages/blockchain-utils-validation" }
]
}