TypeScript has the ability to map paths in tsconfig.json:
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@libs": [
"libraries/*"
]
}
}
}
And then we can use the import as follows:
import {SomeLib} from '@libs/library1';
But now the Angular IDE emphasizes this import as a mistake.
Are there any plans to add support for typescript path mapping to Angular IDE?