diff options
Diffstat (limited to 'packages/abi-gen/tsconfig.json')
-rw-r--r-- | packages/abi-gen/tsconfig.json | 17 |
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", + ] +} |