-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtsconfig.json
More file actions
93 lines (93 loc) · 3.2 KB
/
tsconfig.json
File metadata and controls
93 lines (93 loc) · 3.2 KB
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
85
86
87
88
89
90
91
92
93
{
"compilerOptions": {
"assumeChangesOnlyAffectDirectDependencies": true,
"composite": true,
"declaration": true,
"declarationMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"lib": ["ES2023"],
"module": "nodenext",
"moduleResolution": "nodenext",
"newLine": "lf",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"pretty": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"stripInternal": true,
"target": "es2023",
"types": ["node"],
"typeRoots": ["reflect-metadata", "node_modules/@types"],
"useUnknownInCatchVariables": false
},
"exclude": ["node_modules", "**/*.test.ts"],
"references": [
{ "path": "packages/api" },
{ "path": "packages/api-common" },
{ "path": "packages/api-database" },
{ "path": "packages/api-development" },
{ "path": "packages/api-evm" },
{ "path": "packages/api-http" },
{ "path": "packages/api-sync" },
{ "path": "packages/api-transaction-pool" },
{ "path": "packages/blockchain-utils" },
{ "path": "packages/bootstrap" },
{ "path": "packages/cli" },
{ "path": "packages/configuration-generator" },
{ "path": "packages/consensus" },
{ "path": "packages/consensus-storage" },
{ "path": "packages/container" },
{ "path": "packages/contracts" },
{ "path": "packages/core" },
{ "path": "packages/crypto-address-base58" },
{ "path": "packages/crypto-address-keccak256" },
{ "path": "packages/crypto-block" },
{ "path": "packages/crypto-commit" },
{ "path": "packages/crypto-config" },
{ "path": "packages/crypto-hash-bcrypto" },
{ "path": "packages/crypto-key-pair-bls12-381" },
{ "path": "packages/crypto-key-pair-ecdsa" },
{ "path": "packages/crypto-messages" },
{ "path": "packages/crypto-proposal" },
{ "path": "packages/crypto-signature-bls12-381" },
{ "path": "packages/crypto-signature-ecdsa" },
{ "path": "packages/crypto-transaction" },
{ "path": "packages/crypto-validation" },
{ "path": "packages/crypto-wif" },
{ "path": "packages/crypto-worker" },
{ "path": "packages/database" },
{ "path": "packages/evm-api-worker" },
{ "path": "packages/evm-consensus" },
{ "path": "packages/evm-contracts" },
{ "path": "packages/evm-service" },
{ "path": "packages/evm-state" },
{ "path": "packages/kernel" },
{ "path": "packages/logger-pino" },
{ "path": "packages/networking-dns" },
{ "path": "packages/networking-ntp" },
{ "path": "packages/p2p" },
{ "path": "packages/processor" },
{ "path": "packages/serializer" },
{ "path": "packages/snapshot-legacy-exporter" },
{ "path": "packages/snapshot-legacy-importer" },
{ "path": "packages/state" },
{ "path": "packages/test-runner" },
{ "path": "packages/test-transaction-builders" },
{ "path": "packages/transaction-pool-broadcaster" },
{ "path": "packages/transaction-pool-service" },
{ "path": "packages/transaction-pool-worker" },
{ "path": "packages/transactions" },
{ "path": "packages/utils" },
{ "path": "packages/validation" },
{ "path": "packages/validator" },
{ "path": "packages/webhooks" }
]
}