Post

JSX 절대경로 Path 설정하기

jsconfig.json 파일 만들고 아래와 같아 설정

1
2
3
4
5
6
7
8
{
    "compilerOptions": {
        "baseUrl": "src"
    },
    "include": [
        "src"
    ]
}
This post is licensed under CC BY 4.0 by the author.