-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.backup.json
66 lines (66 loc) · 2.08 KB
/
tsconfig.backup.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
{
"compilerOptions": {
"outDir": "dist",
"target": "es2018",
"moduleResolution": "node",
"module": "esnext",
"declaration": false,
"sourceMap": false,
"types": ["node", "jest"],
"lib": ["es2018", "dom", "esnext.asynciterable"],
"rootDir": "src",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": false,
"noEmit": true,
"jsx": "preserve"
},
"exclude": ["node_modules"],
"files": [],
"references": [
{ "path": "packages/fabric-cqrs/tsconfig.json" },
{ "path": "packages/gateway-lib/tsconfig.json" },
{ "path": "packages/gw-org1/tsconfig.json" },
{ "path": "packages/gw-org2/tsconfig.json" },
{ "path": "packages/gw-org3/tsconfig.json" },
{ "path": "packages/model-common/tsconfig.json" },
{ "path": "packages/model-document/tsconfig.json" },
{ "path": "packages/model-loan/tsconfig.json" },
{ "path": "packages/model-pboc/tsconfig.json" },
{ "path": "packages/operator/tsconfig.json" },
{ "path": "packages/relay-lib/tsconfig.json" },
{ "path": "packages/rl-org1/tsconfig.json" },
{ "path": "packages/gw-issuer/tsconfig.json"},
{ "path": "packages/gw-verifier/tsconfig.json"},
{ "path": "packages/tester/tsconfig.json" }
],
"typedocOptions": {
"entryPoints": ["packages/fabric-cqrs/src/types/index.ts"],
"out": "docs",
"exclude": "\"**/*+(.test|constants|index).ts\"",
"name": "fabric-es",
"lernaExclude": [
"@fabric-es/gateway-lib",
"@fabric-es/gw-org1",
"@fabric-es/gw-org2",
"@fabric-es/gw-org3",
"@fabric-es/model-common",
"@fabric-es/model-document",
"@fabric-es/model-loan",
"@fabric-es/model-pboc",
"@fabric-es/operator",
"@fabric-es/relay-lib",
"@fabric-es/rl-org1",
"@fabric-es/rl-org2",
"@fabric-es/rl-org3",
"@fabric-es/tester"
]
}
}