Skip to content

Commit

Permalink
Removed eslint from ForkTsCheckerWebpackPlugin
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecentola committed May 17, 2022
1 parent a4af1e1 commit ee76ec5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function getExtensionConfig(mode, env) {
plugins.push(
new ForkTsCheckerWebpackPlugin({
async: false,
eslint: { enabled: true, files: 'src/**/*.ts', options: { cache: true } },
// eslint: { enabled: true, files: 'src/**/*.ts', options: { cache: true } },
formatter: 'basic',
}),
);
Expand Down Expand Up @@ -54,7 +54,7 @@ function getExtensionConfig(mode, env) {
module: {
rules: [
{
test: /\.ts$/,
test: /\.tsx?$/,
exclude: /node_modules/,
include: path.join(__dirname, 'src'),
use: [
Expand Down

0 comments on commit ee76ec5

Please sign in to comment.