Reference Imports in Ionic?

Hello everyone,

Recently, I started makin a personal Ionic project and wanted to implement “Reference Imports” similar to the ones found in this angular tutorial:

In short, I want to change an import in my project from:

import { HeaderComponent } from './components/header/header.component';

to this:

import { HeaderComponent } from '@app/components/header/header.component';

Since I see that Ionic doesn’t have an angular-cli file, I’d like to know if there is a file in Ionic that could perform this or if this is even possible.

Regards.