Simplify TypeScript import
How to save your time using imports?
Hey, I’m sure you have already done something like:
import { MyService } from '../../../../../core/services/my-service.service';
Um, not sexy right?
But there is an easy solution to solve this.
Just open your tsconfig.app.json, and add paths option like this in the compilerOptions:
{ ... "compilerOptions": { ... "paths": { "@core/*": ["src/app/core/*"], "@environments/*": ["src/environments/*"], "@feature1/*": ["src/app/feature1/*"], "@feature2/*": ["src/app/feature2/*"], ... } }}
You can write as many as you want and the result will be:
import { MyService } from '@core/services/my-service.service';
No matter where you import it now, you will have this to write.
Thanks for reading.
Learn More.
Top comments(1)
Subscribe

KevinDoran23•
I have been working as a relay technician at Pup 'N' Taco for the last many years . A relay technician performs maintenance and repairs to relays in electrical power stations.
- Location4558 Walnut Avenue Hackensack
- WorkPup 'N' Taco ,Relay technician
- Joined
you have posted really informative and valuable article . that will more beneficial for me i appreciate your work .पति पत्नी को अलग करने का टोटका
For further actions, you may consider blocking this person and/orreporting abuse