diff options
author | Francesco Agosti <francesco.agosti93@gmail.com> | 2018-12-01 04:36:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-01 04:36:22 +0800 |
commit | f496096ce154e51ae0317cc91fd55d062eb6ec4f (patch) | |
tree | d1f6ea052599375e657e7354f50ecabdaa24daff /tsconfig.json | |
parent | ca22d87290fc176488fae7da3f179486340e5c79 (diff) | |
parent | fc2055cd93a5e847947dad10073dd0d29bfb9e29 (diff) | |
download | dexon-sol-tools-f496096ce154e51ae0317cc91fd55d062eb6ec4f.tar dexon-sol-tools-f496096ce154e51ae0317cc91fd55d062eb6ec4f.tar.gz dexon-sol-tools-f496096ce154e51ae0317cc91fd55d062eb6ec4f.tar.bz2 dexon-sol-tools-f496096ce154e51ae0317cc91fd55d062eb6ec4f.tar.lz dexon-sol-tools-f496096ce154e51ae0317cc91fd55d062eb6ec4f.tar.xz dexon-sol-tools-f496096ce154e51ae0317cc91fd55d062eb6ec4f.tar.zst dexon-sol-tools-f496096ce154e51ae0317cc91fd55d062eb6ec4f.zip |
Merge pull request #1348 from 0xProject/feature/instant/cdn-setup
[instant] Remove commonjs bundle, productionize UMD bundle
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json index eaaca8e4e..0e2fefbac 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -34,7 +34,6 @@ { "path": "./packages/dev-utils" }, { "path": "./packages/ethereum-types" }, { "path": "./packages/fill-scenarios" }, - { "path": "./packages/instant" }, { "path": "./packages/json-schemas" }, { "path": "./packages/metacoin" }, { "path": "./packages/migrations" }, @@ -57,5 +56,8 @@ // Skipping website because it requires allowJs: false and this is // incompatible with project references. // { "path": "./packages/website" } + // Skipping instant because it only produces a UMD bundle + // which it uses webpack to create + // { "path": "./packages/instant" }, ] } |