-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
56 lines (56 loc) · 1.59 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
{
"compilerOptions": {
"outDir": "dist",
"target": "es2017",
"moduleResolution": "node",
"esModuleInterop": true,
"module": "commonjs",
"declaration": true,
"sourceMap": false,
"types": ["node", "jest"],
"lib": ["es2017", "dom", "esnext.asynciterable"],
"emitDecoratorMetadata": true,
"experimentalDecorators": true
},
"exclude": ["node_modules", "dist"],
"typedocOptions": {
"out": "typedocs",
"exclude": [
"deployments/**/*",
"packages/**/dist/**/*",
"packages/**/__tests__/**/*",
"packages/**/__mocks__/**/*",
"packages/**/__utils__/**/*",
"packages/**/generated/**/*",
"packages/**/src/**/*+(.test|constants|index).ts",
"packages/**/*.js",
"packages/fabric-cqrs/src/account/**/*",
"packages/fabric-cqrs/src/store/**/*",
"packages/gateway-lib/src/**/query/*",
"packages/gw-org1/src/**/*",
"packages/gw-org2/src/**/*",
"packages/gw-org3/src/**/*",
"packages/gw-registrar/src/**/*",
"packages/gw-verifier/src/**/*",
"packages/gw-issuer/src/**/*",
"packages/model-document/**/*",
"packages/model-loan/**/*",
"packages/model-identity/**/*",
"packages/tester/**/*"
],
"excludePrivate": true,
"name": "fabric-es",
"readme": "./README.md",
"includeVersion": true,
"excludeExternals": true,
"hideGenerator": true,
"lernaExclude": [
"@fabric-es/gw-org1",
"@fabric-es/gw-org2",
"@fabric-es/gw-org3",
"@fabric-es/model-document",
"@fabric-es/model-loan",
"@fabric-es/tester"
]
}
}