1. tsconfig.json에 아래와 같은 설정
    {
    "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
     "paths": {
       "@/*": [
         "./*"
       ],
       "@test/*": [
         "test/*"
       ]
     }
    }
  2. tsconfig-paths 필요
    npm i tsconfig-paths

+ Recent posts