Angular-重构相对导入

时间:2019-05-15 07:33:18

标签: angular typescript tslint

不久前,我开始在Angular 7中进行编码,并即时进行学习。最近我认识到,相对进口不是很理想。这就是为什么我将此添加到我的tsconfig.json

的原因
  "compilerOptions": {
    "baseUrl": "./",
    "paths": {
      "@application/*": [
        "src/app/application/*"
      ]
    }
  }

现在,我想从此重构我的导入:

import { ApplicationLogService } from './../../../service/application-log.service';
import { ApplicationLogTableComponent } from './../../tables/application-log-table/application-log-table.component';

对此:

import { ApplicationLogService } from '@application/service/application-log.service';
import { ApplicationLogTableComponent } from '@application/components/tables/application-log-table/application-log-table.component';

由于这个事实,我有很多相对进口货,所以我正在寻找一种自动重构这些进口货的方法。你知道有什么办法吗?

0 个答案:

没有答案