-
Notifications
You must be signed in to change notification settings - Fork 50
/
tsconfig.dist.json
45 lines (45 loc) · 1.47 KB
/
tsconfig.dist.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
{
"compilerOptions": {
"outDir": "./dist/",
"declaration": true,
"declarationDir": "./dist/types",
"sourceMap": true,
"noImplicitAny": false,
"lib": [
"es2015",
"es2016",
"es2017"
],
"module": "commonjs",
"baseUrl": ".",
"rootDir": ".",
"target": "es6",
"types": []
},
"files": [
"node_modules/web3-typescript-typings/index.d.ts",
"artifacts/index.ts",
"artifacts/ts/DebtKernel.ts",
"artifacts/ts/DebtRegistry.ts",
"artifacts/ts/RepaymentRouter.ts",
"artifacts/ts/TokenTransferProxy.ts",
"artifacts/ts/ContractRegistry.ts",
"artifacts/ts/TermsContract.ts",
"artifacts/ts/DebtToken.ts",
"artifacts/ts/TokenRegistry.ts",
"artifacts/ts/Collateralizer.ts",
"artifacts/ts/SimpleInterestTermsContract.ts",
"artifacts/ts/CollateralizedSimpleInterestTermsContract.ts",
"artifacts/ts/ERC20.ts",
"artifacts/ts/DummyToken.ts",
"artifacts/ts/ERC721CollateralizedSimpleInterestTermsContract.ts",
"artifacts/ts/ERC721Collateralizer.ts",
"artifacts/ts/ERC721TokenRegistry.ts",
"artifacts/ts/MintableERC721Token.ts",
"artifacts/ts/ERC721Token.ts",
"artifacts/ts/ERC721Receiver.ts",
"artifacts/ts/MockERC721Receiver.ts",
"artifacts/ts/KittyCore.ts",
"artifacts/ts/CreditorProxy.ts"
]
}