when importing something using src\app... angular cli gives error " Module not found: Error: Can't resolve 'src/app/shared/k/k-api.service' in 'C:...' ". error TS2307: Cannot find module 'src/app/shared/k/k-api.service'
import { KAPIService } from 'src/app/shared/k/k-api.service';
but when using relative path it works just fine
import { KAPIService } from '../../../../shared/k/k-api.service';