I configured some path alias in my tsconfig.json and they works fine:
"paths": {
"@app/models": ["src/app/app.models"],
"@app/routing": ["src/app/app-routing.module"],
"@app/routing/*": ["src/app/routing/*"]
}
What I need now is to configure another path alias with multiple paths. Should be something similar to this:
"@app/ab": ["src/app/test-a/a", "src/app/test-b/b"]
The problem is when I import from @app/ab because I can see only classes declared in src/app/test-a/a. Is there a possibile solution to achieve this?