Open darewreck54 opened 6 years ago
It seems ATL doesn't handle tsconfig paths where the lhs contains an *
at the moment.
Not working:
"paths": {
"*" : ["types/*"],
"common/*": ["src/stuff/common/"]
}
working fine:
"paths": {
"common": ["src/stuff/common/"]
}
There's three workarounds I've found:
*
in them - but that isn't always possible.
I actually posted this on stackoverflow but there is no tag for this project.
https://stackoverflow.com/questions/51624134/aliasing-with-webpack-4-and-awesome-typescript-loader-not-working
I'm basically having issues with getting alias to work properly with webpack 4 and awesome typescript loader. It's not clear to me if its the configuration or what.
Any advice appreciated, Thanks, Derek