-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
37 lines (37 loc) · 1.22 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"declaration": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"composite": true,
"lib": ["esnext"],
"module": "CommonJS",
"moduleResolution": "node",
"noImplicitThis": true,
"outDir": "dist",
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"target": "es6"
},
"exclude": ["**/dist"],
"include": [
"abis/PublicGoodsAreGood.json",
"abis/EIP712Acknowledgement.json",
"abis/EIP712Registration.json",
"abis/SourceRegistry.json",
"abis/TargetRegistry.json",
"abis/StolenWalletNFT.json",
"abis/StolenWalletRegistry.json",
"typechain/factories/PriceFeedConsumer__factory",
"typechain/factories/PublicGoodsAreGood__factory",
"typechain/factories/TargetRegistry__factory",
"typechain/factories/SourceRegistry__factory",
"typechain/factories/StolenWalletNFT__factory",
"typechain/factories/StolenWalletRegistry__factory"
]
}