aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/tsconfig.json
diff options
context:
space:
mode:
authorFrancesco Agosti <francesco.agosti93@gmail.com>2018-11-21 22:38:21 +0800
committerGitHub <noreply@github.com>2018-11-21 22:38:21 +0800
commitf66b695a470af8bd87fda017384e3059e66b10d8 (patch)
treebfd765a7d5f8b5f4fb8f19d32c47f4c4b5828263 /packages/instant/tsconfig.json
parenta8803431b3e339552c989d7567bf6241f39a2bdf (diff)
parent6de499459cb29f74cabd91c441f85e4c2325a6d7 (diff)
downloaddexon-sol-tools-f66b695a470af8bd87fda017384e3059e66b10d8.tar
dexon-sol-tools-f66b695a470af8bd87fda017384e3059e66b10d8.tar.gz
dexon-sol-tools-f66b695a470af8bd87fda017384e3059e66b10d8.tar.bz2
dexon-sol-tools-f66b695a470af8bd87fda017384e3059e66b10d8.tar.lz
dexon-sol-tools-f66b695a470af8bd87fda017384e3059e66b10d8.tar.xz
dexon-sol-tools-f66b695a470af8bd87fda017384e3059e66b10d8.tar.zst
dexon-sol-tools-f66b695a470af8bd87fda017384e3059e66b10d8.zip
Merge pull request #1283 from 0xProject/feature/instant/make-instant-public-and-fix-publishing
[instant] Make package public and fix publishing
Diffstat (limited to 'packages/instant/tsconfig.json')
-rw-r--r--packages/instant/tsconfig.json11
1 files changed, 3 insertions, 8 deletions
diff --git a/packages/instant/tsconfig.json b/packages/instant/tsconfig.json
index 28a6190b8..14b0ad8f7 100644
--- a/packages/instant/tsconfig.json
+++ b/packages/instant/tsconfig.json
@@ -2,16 +2,11 @@
"extends": "../../tsconfig",
"compilerOptions": {
"outDir": "lib",
- "rootDir": ".",
+ "rootDir": "src",
"jsx": "react",
- "allowSyntheticDefaultImports": true,
"noImplicitAny": true,
- "module": "ESNext",
- "moduleResolution": "node",
- "lib": ["es2015", "dom"],
- "target": "es5",
- "sourceMap": true
+ "allowSyntheticDefaultImports": true
},
- "include": ["./src/**/*", "./test/**/*"],
+ "include": ["./src/**/*"],
"exclude": ["./src/index.umd.ts"]
}