aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/tsconfig.json
diff options
context:
space:
mode:
authorFrancesco Agosti <francesco.agosti93@gmail.com>2018-12-01 04:36:22 +0800
committerGitHub <noreply@github.com>2018-12-01 04:36:22 +0800
commitf496096ce154e51ae0317cc91fd55d062eb6ec4f (patch)
treed1f6ea052599375e657e7354f50ecabdaa24daff /packages/instant/tsconfig.json
parentca22d87290fc176488fae7da3f179486340e5c79 (diff)
parentfc2055cd93a5e847947dad10073dd0d29bfb9e29 (diff)
downloaddexon-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 'packages/instant/tsconfig.json')
-rw-r--r--packages/instant/tsconfig.json8
1 files changed, 5 insertions, 3 deletions
diff --git a/packages/instant/tsconfig.json b/packages/instant/tsconfig.json
index 14b0ad8f7..2b3c11c9f 100644
--- a/packages/instant/tsconfig.json
+++ b/packages/instant/tsconfig.json
@@ -5,8 +5,10 @@
"rootDir": "src",
"jsx": "react",
"noImplicitAny": true,
- "allowSyntheticDefaultImports": true
+ "allowSyntheticDefaultImports": true,
+ "declaration": false,
+ "declarationMap": false,
+ "composite": false
},
- "include": ["./src/**/*"],
- "exclude": ["./src/index.umd.ts"]
+ "include": ["./src/**/*"]
}