Webpack: Fix accidental double typechecking (#18881)

This commit is contained in:
kay delaney
2019-09-04 10:17:49 +01:00
committed by GitHub
parent aab224ef29
commit 6ea2d484b1
2 changed files with 2 additions and 8 deletions

View File

@ -1,5 +1,4 @@
const path = require('path');
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
module.exports = {
target: 'web',
@ -93,9 +92,4 @@ module.exports = {
},
},
},
plugins: [
new ForkTsCheckerWebpackPlugin({
checkSyntacticErrors: true,
})
],
};