Disable type checking on JS

jh-changes
Shin'ya Ueoka 4 years ago
parent 81b44a6cc9
commit 2318e3a555
  1. 2
      tsconfig.json
  2. 2
      webpack.config.js

@ -4,7 +4,7 @@
"module": "commonjs",
"lib": ["es6", "dom", "es2017"],
"allowJs": true,
"checkJs": true,
"checkJs": false,
"jsx": "react",
"sourceMap": true,
"outDir": "./build",

@ -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'),