출처: https://deku.posstree.com/ko/react/create-react-app/root-import/
tsconfig.json 파일에서
compilerOptions{"baseUrl": "src"}
추가
typescript이전의 jsconfig.json 에서 절대 경로를 위해 설정했던
{
"compilerOptions": {
"baseUrl": "src"
},
"includes": ["src"]
}
위의 코드는 지우고 원래의
{
"compilerOptions": {
"paths": {
"@/*": ["./*"]
}
}
}
로 다시 설정해야 함