aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'packages/contracts/tsconfig.json')
-rw-r--r--packages/contracts/tsconfig.json16
1 files changed, 7 insertions, 9 deletions
diff --git a/packages/contracts/tsconfig.json b/packages/contracts/tsconfig.json
index c51d5acc4..38008a542 100644
--- a/packages/contracts/tsconfig.json
+++ b/packages/contracts/tsconfig.json
@@ -1,17 +1,17 @@
{
+ "extends": "../../tsconfig",
"compilerOptions": {
- "outDir": "./lib/",
- "sourceMap": true,
- "noImplicitAny": true,
- "module": "commonjs",
- "target": "es6",
+ "outDir": "lib",
"baseUrl": ".",
+ "declaration": false,
+ "strictNullChecks": false,
+ "strictFunctionTypes": false,
"allowJs": true
},
"include": [
"../../node_modules/types-ethereumjs-util/index.d.ts",
- "../../node_modules/web3-typescript-typings/index.d.ts",
"../../node_modules/chai-typescript-typings/index.d.ts",
+ "../../node_modules/web3-typescript-typings/index.d.ts",
"../../node_modules/chai-as-promised-typescript-typings/index.d.ts",
"../../node_modules/types-ethereumjs-util/index.d.ts",
"../../node_modules/types-bn/index.d.ts",
@@ -21,7 +21,5 @@
"./migrations/**/*",
"./deploy/**/*"
],
- "exclude": [
- "./deploy/solc/solc_bin"
- ]
+ "exclude": ["./deploy/solc/solc_bin"]
}