๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ

๐Ÿ‘ฉ‍๐Ÿ’ป ๊ฐœ๋ฐœ ๊ณต๋ถ€

[React/Typescript] TS2307: Cannot find module 'swiper' or its corresponding type declarations.

 

๊ธฐ์กด ํ”„๋กœ์ ํŠธ์— ์Šฌ๋ผ์ด๋”๋ฅผ ๋งŒ๋“œ๋ ค๊ณ  ์‹œ๋„.

swiper ์จ์•ผ๋˜๋Š”๋ฐ ์ž๊พธ ์—๋Ÿฌ๊ฐ€ ๋‚ฌ๋‹ค

Error : TS2307: Cannot find module 'swiper' or its corresponding type declarations.

 

 

ํ•ด๊ฒฐ ๋ฐฉ๋ฒ•

 

1. npm i @types/swiper ์„ค์น˜

 

2. tsconfig.json ํŒŒ์ผ์— types๋ฅผ ์ถ”๊ฐ€ํ•œ๋‹ค.

{
  "compilerOptions": {
    "types": ["react-transition-group"], // ์ด๊ฑฐ ์ถ”๊ฐ€ํ•˜๋‹ˆ ์—๋Ÿฌ๊ฐ€ ์‚ฌ๋ผ์ง
    ...
   }
 }