please add support for the new TypeScript relative path shortcuts / alias in ng cli
{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"baseUrl": "src",
"paths": [
"actions/*": [ "app/actions/*" ],
"selectors/*": [ "app/selectors/*" ],
"ui/*": [ "app/ui/*" ],
"logger": [ "util/logger" ],
]
}
}
please add support for the new TypeScript relative path shortcuts / alias in ng cli
You learn more about it here:
https://decembersoft.com/posts/say-goodbye-to-relative-paths-in-typescript-imports/
which will be awesome so we can use in angular alias paths and not have to
../../../../SomeComponentThanks as always for a great product,
Sean