forked from ipfs/js-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
84 lines (84 loc) · 1.89 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": false,
"noImplicitAny": false,
"noImplicitThis": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"strictBindCallApply": true,
"strict": true,
"alwaysStrict": true,
"esModuleInterop": true,
"target": "ES2018",
"moduleResolution": "node",
"declaration": true,
"declarationMap": true,
"skipLibCheck": true,
"stripInternal": true,
"resolveJsonModule": true,
"incremental": true,
"isolatedModules": true,
"baseUrl": ".",
"paths": {
"interface-ipfs-core/*": [
"interface-ipfs-core/*"
],
"ipfs/*": [
"ipfs/*"
],
"ipfs-cli/*": [
"ipfs-cli/*"
],
"ipfs-client/*": [
"ipfs-client/*"
],
"ipfs-core/*": [
"ipfs-core/*"
],
"ipfs-core-utils/*": [
"ipfs-core-utils/*"
],
"ipfs-daemon/*": [
"ipfs-daemon/*"
],
"ipfs-grpc-client/*": [
"ipfs-grpc-client/*"
],
"ipfs-grpc-server/*": [
"ipfs-grpc-server/*"
],
"ipfs-http-client/*": [
"ipfs-http-client/*"
],
"ipfs-http-gateway/*": [
"ipfs-http-gateway/*"
],
"ipfs-http-server/*": [
"ipfs-http-server/*"
],
"ipfs-message-port-protocol/*": [
"ipfs-message-port-protocol/*"
],
"ipfs-message-port-server/*": [
"ipfs-message-port-server/*"
]
},
"composite": true,
"emitDeclarationOnly": true
},
"exclude": [
"dist",
"packages/*/dist",
"packages/*/test",
"packages/*/node_modules",
"node_modules"
],
"compileOnSave": false
}