[React] vscode typescript 컴파일 에러

2024. 8. 13. 10:17설치관련

Module not found: Error: Can't resolve

javascript는 문제가 없는데 typescript 사용시 빨간줄도 없는데 오류가 나온다.

 

 

해결 방법

typescript는 tsconfig.json 파일이 필수다.

없다면 수동으로 만들어주기

{
  "compilerOptions": {
    "jsx": "react",
    "lib": ["ES2015", "dom"],
    "module": "commonjs",
    "outDir": "dist",
    "esModuleInterop": true,
    "sourceMap": true,
    "strict": true,
    "target": "ES2015"
  },
  "include": ["src"]
}