This repository has been archived by the owner on Jul 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 466
/
Copy pathtsconfig.json
71 lines (71 loc) · 3.76 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"extends": "../../tsconfig",
"compilerOptions": { "outDir": "lib", "rootDir": ".", "resolveJsonModule": true },
"include": ["./src/**/*", "./test/**/*", "./generated-wrappers/**/*"],
"files": [
"generated-artifacts/IStaking.json",
"generated-artifacts/IStakingEvents.json",
"generated-artifacts/IStakingProxy.json",
"generated-artifacts/IZrxVault.json",
"generated-artifacts/LibStakingRichErrors.json",
"generated-artifacts/Staking.json",
"generated-artifacts/StakingProxy.json",
"generated-artifacts/TestStaking.json",
"generated-artifacts/ZrxVault.json",
"test/generated-artifacts/IStaking.json",
"test/generated-artifacts/IStakingEvents.json",
"test/generated-artifacts/IStakingProxy.json",
"test/generated-artifacts/IStorage.json",
"test/generated-artifacts/IStorageInit.json",
"test/generated-artifacts/IStructs.json",
"test/generated-artifacts/IZrxVault.json",
"test/generated-artifacts/LibCobbDouglas.json",
"test/generated-artifacts/LibFixedMath.json",
"test/generated-artifacts/LibFixedMathRichErrors.json",
"test/generated-artifacts/LibSafeDowncast.json",
"test/generated-artifacts/LibStakingRichErrors.json",
"test/generated-artifacts/MixinAbstract.json",
"test/generated-artifacts/MixinConstants.json",
"test/generated-artifacts/MixinCumulativeRewards.json",
"test/generated-artifacts/MixinDeploymentConstants.json",
"test/generated-artifacts/MixinExchangeFees.json",
"test/generated-artifacts/MixinExchangeManager.json",
"test/generated-artifacts/MixinFinalizer.json",
"test/generated-artifacts/MixinParams.json",
"test/generated-artifacts/MixinScheduler.json",
"test/generated-artifacts/MixinStake.json",
"test/generated-artifacts/MixinStakeBalances.json",
"test/generated-artifacts/MixinStakeStorage.json",
"test/generated-artifacts/MixinStakingPool.json",
"test/generated-artifacts/MixinStakingPoolRewards.json",
"test/generated-artifacts/MixinStorage.json",
"test/generated-artifacts/Staking.json",
"test/generated-artifacts/StakingProxy.json",
"test/generated-artifacts/TestAssertStorageParams.json",
"test/generated-artifacts/TestCobbDouglas.json",
"test/generated-artifacts/TestCumulativeRewardTracking.json",
"test/generated-artifacts/TestDelegatorRewards.json",
"test/generated-artifacts/TestExchangeManager.json",
"test/generated-artifacts/TestFinalizer.json",
"test/generated-artifacts/TestInitTarget.json",
"test/generated-artifacts/TestLibFixedMath.json",
"test/generated-artifacts/TestLibSafeDowncast.json",
"test/generated-artifacts/TestMixinCumulativeRewards.json",
"test/generated-artifacts/TestMixinParams.json",
"test/generated-artifacts/TestMixinScheduler.json",
"test/generated-artifacts/TestMixinStake.json",
"test/generated-artifacts/TestMixinStakeBalances.json",
"test/generated-artifacts/TestMixinStakeStorage.json",
"test/generated-artifacts/TestMixinStakingPool.json",
"test/generated-artifacts/TestMixinStakingPoolRewards.json",
"test/generated-artifacts/TestProtocolFees.json",
"test/generated-artifacts/TestProxyDestination.json",
"test/generated-artifacts/TestStaking.json",
"test/generated-artifacts/TestStakingNoWETH.json",
"test/generated-artifacts/TestStakingProxy.json",
"test/generated-artifacts/TestStakingProxyUnit.json",
"test/generated-artifacts/TestStorageLayoutAndConstants.json",
"test/generated-artifacts/ZrxVault.json"
],
"exclude": ["./deploy/solc/solc_bin"]
}