Skip to content

alias in webstorm

Centell edited this page Apr 13, 2020 · 1 revision

좀 특이한데, 프로젝트 루트에 webStorm.config.js 파일을 만든 뒤 다음을 입력한다. 그러면 Webstorm이 alias로 표현된 경로를 이해한다.

System.config({
  paths: {
    '@controllers/*': './app/controllers/*',
  },
});

Clone this wiki locally