aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/tsconfig.json')
-rw-r--r--packages/website/tsconfig.json10
1 files changed, 4 insertions, 6 deletions
diff --git a/packages/website/tsconfig.json b/packages/website/tsconfig.json
index ebbee7ff3..43c417be0 100644
--- a/packages/website/tsconfig.json
+++ b/packages/website/tsconfig.json
@@ -1,18 +1,16 @@
{
+ "extends": "../../tsconfig",
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"outDir": "./transpiled/",
- "sourceMap": true,
- "lib": ["es2015", "dom"],
- "noImplicitAny": true,
- "module": "commonjs",
- "target": "es5",
"jsx": "react",
"baseUrl": "./",
"allowJs": true,
+ "strictNullChecks": true,
+ "declaration": false,
"paths": {
"*": ["node_modules/@types/*", "*"]
}
},
- "include": ["./ts/**/*", "../../node_modules/web3-typescript-typings/index.d.ts"]
+ "include": ["./ts/**/*"]
}