aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-12-03 17:51:26 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2019-12-03 17:51:26 +0900
commit2318e3a55592cf7888006bd1afe43deec396d394 (patch)
tree1edcb646ea07050b22f3aef8d5637c69774c8f71
parent81b44a6cc9f9ec4af1af074ae061f6206c3bcd03 (diff)
Disable type checking on JS
-rw-r--r--tsconfig.json2
-rw-r--r--webpack.config.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 9f90223..f3a6a33 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -4,7 +4,7 @@
"module": "commonjs",
"lib": ["es6", "dom", "es2017"],
"allowJs": true,
- "checkJs": true,
+ "checkJs": false,
"jsx": "react",
"sourceMap": true,
"outDir": "./build",
diff --git a/webpack.config.js b/webpack.config.js
index 1cd05df..ee252bf 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -4,7 +4,7 @@ const path = require('path');
const src = path.resolve(__dirname, 'src');
const dist = path.resolve(__dirname, 'build');
-config = {
+const config = {
entry: {
content: path.join(src, 'content'),
settings: path.join(src, 'settings'),