본문 바로가기
Tip

CRA 프로젝트 absolute import path 설정 | .env tsconfig jsconfig

by 5ON 2021. 9. 4.

절대경로. absolute import path를 설정하기 위해 아래와 같은 작업이 필요하다.

 

jsconfig.json or tsconfig.json

{
  "compilerOptions": {
    // ...
    "baseUrl": "src", // Add this
    // ...
  },
  "include": [
    "src" // Add this
  ]
}