aboutsummaryrefslogtreecommitdiffstats
path: root/packages/abi-gen/tsconfig.json
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-12-06 00:53:59 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-12-06 00:53:59 +0800
commit1ce66b4a81b736f5288463be609a902af64cbe77 (patch)
tree55a563c7d7a53213c3299f333e80e916c17e265b /packages/abi-gen/tsconfig.json
parent63b1199bd545b9f37481fdb8707c0acc49c4d4c3 (diff)
downloaddexon-sol-tools-1ce66b4a81b736f5288463be609a902af64cbe77.tar
dexon-sol-tools-1ce66b4a81b736f5288463be609a902af64cbe77.tar.gz
dexon-sol-tools-1ce66b4a81b736f5288463be609a902af64cbe77.tar.bz2
dexon-sol-tools-1ce66b4a81b736f5288463be609a902af64cbe77.tar.lz
dexon-sol-tools-1ce66b4a81b736f5288463be609a902af64cbe77.tar.xz
dexon-sol-tools-1ce66b4a81b736f5288463be609a902af64cbe77.tar.zst
dexon-sol-tools-1ce66b4a81b736f5288463be609a902af64cbe77.zip
Rename abi-gen to typed-contracts
Diffstat (limited to 'packages/abi-gen/tsconfig.json')
-rw-r--r--packages/abi-gen/tsconfig.json17
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/abi-gen/tsconfig.json b/packages/abi-gen/tsconfig.json
new file mode 100644
index 000000000..2a3667890
--- /dev/null
+++ b/packages/abi-gen/tsconfig.json
@@ -0,0 +1,17 @@
+{
+ "compilerOptions": {
+ "module": "commonjs",
+ "target": "es5",
+ "lib": ["es2015", "dom"],
+ "outDir": "lib",
+ "sourceMap": true,
+ "declaration": true,
+ "noImplicitAny": true,
+ "strictNullChecks": true
+ },
+ "include": [
+ "./src/**/*",
+ "./test/**/*",
+ "../../node_modules/web3-typescript-typings/index.d.ts",
+ ]
+}