I'm working on an angular 5 project which happened to be my first type script app. I've added the below configurations in my tsconfig.json
"baseUrl": "src", //had to add this too
"paths": {
"@env/*": ["environments/*"],
"@core/*": ["app/core/*"],
"@sim-shared/*": ["app/shared/*"]
}
When I try to access it from my component or service like
import xxx from '@env/XXX';
It gives me couldn't resolve the path error.
I've already tried disabling the angular language service which didn't help. Any help is really appreciated.