How to load a component template/styles using absolute paths (i.e. from another module) ?
@Component({
selector: 'a-component',
templateUrl: 'shared-module/components/another-shared-component/component.html',
styleUrls: ['shared-module/components/another-shared-component/component.scss']
})
I have tries using /
, ~/
and just starting with the module name but none worked.