Skip to content
This repository has been archived by the owner on Sep 13, 2022. It is now read-only.

Commit

Permalink
fix: import/no-unresolved rule
Browse files Browse the repository at this point in the history
  • Loading branch information
virgoone committed Aug 3, 2022
1 parent d561891 commit 98c3f07
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"deepmerge": "4.2.2",
"esbuild": "^0.14.47",
"esbuild-loader": "^2.19.0",
"escape-string-regexp": "^5.0.0",
"file-loader": "^6.2.0",
"fs-extra": "^10.1.0",
"html-webpack-plugin": "^5.5.0",
Expand Down
10 changes: 10 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion src/webpack/webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/* eslint-disable global-require */
/* eslint-disable import/no-unresolved */
const webpack = require('webpack')
const resolve = require('resolve')
const path = require('path')
Expand Down Expand Up @@ -28,7 +29,7 @@ const reactRefreshWebpackPluginRuntimeEntry = require.resolve(

const { __DEV__, PUBLIC_PATH: publicPath, APP_ENV } = variables
const { appIndex, appSrc, appHtml, appPolyfill } = paths
const { mfsu: MFSU_ENABLED, transpiler, transpilerOptions } = builds
const { transpiler, transpilerOptions } = builds

const tsconfigRaw = [paths.appTsConfig, paths.appJsConfig].filter((f) =>
fs.existsSync(f)
Expand Down

0 comments on commit 98c3f07

Please sign in to comment.