我试图改变这个:
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中使用路径,但如果我使用路径会很好。如果有人可以提供帮助,我将非常感激。