본문 바로가기
Errors

TS2307: Cannot find module '@/App' or its corresponding type declarations.

by egas 2021. 10. 8.

발생 오류

 

발생 원인

아래 코드와 같이 webpack에서 alias를 지정했을 때, tsconfig.json에서도 path를 설정해주어야하는데 설정하지 않았을 때 에러가 발생한다.

// webpack.config.js

module.exports = {
  ...
  resolve: {
    alias: {
      '@': path.resolve(__dirname, '../src/'),
    },
    ...
  },
};

 

해결 방안

tsconfig.json에 paths를 추가해준다.

// tsconfig.json
"paths": {
  "@/*": ["src/*"]
},
728x90

댓글