protocol/contracts/utils/tsconfig.json
Elena c4b1f043c6
Remove obsoleted code from 0x/contracts-utils (#643)
* Remove TestAuthorizable

* Remove contracts/utils Authorizable and IAuthorizable

* Remove contracts/utils D18 contract

* Remove contracts/utils LibAddress contracts

* Remove contracts/utils LogDecoding contracts

* Remove contracts/utils Refundable contracts

* Remove contracts/utils LibAuthorizableRichErrors contracts

* Remove contracts/utils EIP712 contracts

* Remove contracts/utils TestRefundableReceiver contracts

* Remove contracts/utils EIP1271 contracts

* Remove contracts/utils ReentrancyGuardV06 contracts

* Remove contracts/utils LibMath contracts

* Remove contracts/utils LibFractions contracts

* Remove contracts/utils LibMathRichErrors contracts

* Remove DeploymentConstants as per PR review
https://github.com/0xProject/protocol/pull/643#pullrequestreview-1264963784
2023-02-06 19:35:39 +02:00

62 lines
3.2 KiB
JSON

{
"extends": "../../tsconfig",
"compilerOptions": { "outDir": "lib", "rootDir": ".", "resolveJsonModule": true },
"include": ["./src/**/*", "./test/**/*", "./generated-wrappers/**/*"],
"files": [
"generated-artifacts/IOwnable.json",
"generated-artifacts/LibBytes.json",
"generated-artifacts/LibBytesRichErrors.json",
"generated-artifacts/LibOwnableRichErrors.json",
"generated-artifacts/LibReentrancyGuardRichErrors.json",
"generated-artifacts/LibRichErrors.json",
"generated-artifacts/LibSafeMath.json",
"generated-artifacts/LibSafeMathRichErrors.json",
"generated-artifacts/Ownable.json",
"generated-artifacts/ReentrancyGuard.json",
"test/generated-artifacts/AuthorizableV06.json",
"test/generated-artifacts/AuthorizableV08.json",
"test/generated-artifacts/IAuthorizableV06.json",
"test/generated-artifacts/IAuthorizableV08.json",
"test/generated-artifacts/IOwnable.json",
"test/generated-artifacts/IOwnableV06.json",
"test/generated-artifacts/IOwnableV08.json",
"test/generated-artifacts/LibAuthorizableRichErrorsV06.json",
"test/generated-artifacts/LibAuthorizableRichErrorsV08.json",
"test/generated-artifacts/LibBytes.json",
"test/generated-artifacts/LibBytesRichErrors.json",
"test/generated-artifacts/LibBytesRichErrorsV06.json",
"test/generated-artifacts/LibBytesRichErrorsV08.json",
"test/generated-artifacts/LibBytesV06.json",
"test/generated-artifacts/LibBytesV08.json",
"test/generated-artifacts/LibMathRichErrorsV06.json",
"test/generated-artifacts/LibMathRichErrorsV08.json",
"test/generated-artifacts/LibMathV06.json",
"test/generated-artifacts/LibMathV08.json",
"test/generated-artifacts/LibOwnableRichErrors.json",
"test/generated-artifacts/LibOwnableRichErrorsV06.json",
"test/generated-artifacts/LibOwnableRichErrorsV08.json",
"test/generated-artifacts/LibReentrancyGuardRichErrors.json",
"test/generated-artifacts/LibReentrancyGuardRichErrorsV06.json",
"test/generated-artifacts/LibReentrancyGuardRichErrorsV08.json",
"test/generated-artifacts/LibRichErrors.json",
"test/generated-artifacts/LibRichErrorsV06.json",
"test/generated-artifacts/LibRichErrorsV08.json",
"test/generated-artifacts/LibSafeMath.json",
"test/generated-artifacts/LibSafeMathRichErrors.json",
"test/generated-artifacts/LibSafeMathRichErrorsV06.json",
"test/generated-artifacts/LibSafeMathRichErrorsV08.json",
"test/generated-artifacts/LibSafeMathV06.json",
"test/generated-artifacts/Ownable.json",
"test/generated-artifacts/OwnableV06.json",
"test/generated-artifacts/OwnableV08.json",
"test/generated-artifacts/ReentrancyGuard.json",
"test/generated-artifacts/ReentrancyGuardV08.json",
"test/generated-artifacts/TestLibBytes.json",
"test/generated-artifacts/TestLibRichErrors.json",
"test/generated-artifacts/TestLibSafeMath.json",
"test/generated-artifacts/TestOwnable.json",
"test/generated-artifacts/TestReentrancyGuard.json"
],
"exclude": ["./deploy/solc/solc_bin"]
}