From 5cf50f0689d488bbcde0572f163ad3f73b0cb936 Mon Sep 17 00:00:00 2001 From: Andrey Polischuk Date: Wed, 27 Mar 2024 17:44:51 +0300 Subject: [PATCH] fix(eslint): add file extensions --- packages/eslint/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/eslint/index.js b/packages/eslint/index.js index 756269b..07891ee 100644 --- a/packages/eslint/index.js +++ b/packages/eslint/index.js @@ -5,6 +5,7 @@ module.exports = (options = {}) => ({ modifyWebpackConfig({webpackConfig}) { webpackConfig.plugins = [ new ESLintPlugin({ + extensions: ['js', 'jsx', 'ts', 'tsx'], ...options, formatter }),