Commits
Click on a commit to change the comparison rangefeat: support wildcard `*` in alias plugin
```
alias: {
'@*': path.resolve(__dirname, 'src/*'), // maps @something to path/to/something
}
```
Ported from https://github.com/webpack/enhanced-resolve/pull/439
Please note there is a small behaviour difference when compared to
TypeScript's path alias resolve:
In TypeScript, when multiple patterns match a module specifier, the pattern with the longest matching prefix before any * token is used:
https://www.typescriptlang.org/docs/handbook/modules/reference.html#wildcard-substitutions
In enhanced-resolved's alias plugin, first match alias key (in declaration order) wins.
closes #385
closes #386