diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-12-11 02:53:25 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-12-13 01:19:32 +0800 |
commit | e8231767ec870c55181d9dfc687639d9d927ba75 (patch) | |
tree | 3d55aa8ad5b5e2f768e7a6493d518a874abd5441 /contracts/extensions/tsconfig.json | |
parent | 2b7dabeb6e6c0baca8bc36fe19e39dd4000801b2 (diff) | |
download | dexon-0x-contracts-e8231767ec870c55181d9dfc687639d9d927ba75.tar.gz dexon-0x-contracts-e8231767ec870c55181d9dfc687639d9d927ba75.tar.zst dexon-0x-contracts-e8231767ec870c55181d9dfc687639d9d927ba75.zip |
Refactor our extensions package
Diffstat (limited to 'contracts/extensions/tsconfig.json')
-rw-r--r-- | contracts/extensions/tsconfig.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/contracts/extensions/tsconfig.json b/contracts/extensions/tsconfig.json new file mode 100644 index 000000000..c894eb367 --- /dev/null +++ b/contracts/extensions/tsconfig.json @@ -0,0 +1,15 @@ +{ + "extends": "../../tsconfig", + "compilerOptions": { + "outDir": "lib", + "rootDir": ".", + "resolveJsonModule": true + }, + "include": ["./src/**/*", "./test/**/*", "./generated-wrappers/**/*"], + "files": [ + "./generated-artifacts/DutchAuction.json", + "./generated-artifacts/Forwarder.json", + "./generated-artifacts/OrderValidator.json" + ], + "exclude": ["./deploy/solc/solc_bin"] +} |