LoginSignup
1
0

More than 3 years have passed since last update.

create-react-appでの作成時の、eslintのunable to resolve path to module への対応

Last updated at Posted at 2020-07-22

.eslintrcに下記のように追記する。特に何かをimportする必要はない。

module.exports = {
  ...,
  settings: {
    'import/resolver': {
      node: {
        extensions: ['.js', '.jsx', '.ts', '.tsx'],
        paths: ['./src']
      }
    }
  },
}
1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0