离子2导入路径

时间:2016-11-20 06:19:26

标签: angular ionic-framework ionic2

我试图改变这个:

import { SomeService} from '../../../../../service/some-service.service';

到这个

import { SomeService} from 'service/some-service.service';

通过在tsconfig.json中添加baseUrl和路径:

"compilerOptions": {
"baseUrl": "./src",
"paths": {
  "service/*": ["service/*"],
}}

但是我收到了这个错误

  

未捕获错误:在....中找不到模块'service / some-service.service'。

我知道没有在tsconfig.json中使用路径,但如果我使用路径会很好。如果有人可以提供帮助,我将非常感激。

0 个答案:

没有答案