相关文章推荐
暗恋学妹的鸵鸟  ·  MySQL 8.0 ...·  3 周前    · 
暗恋学妹的鸵鸟  ·  javascript - ...·  5 月前    · 
暗恋学妹的鸵鸟  ·  Debezium MongoDB ...·  9 月前    · 
暗恋学妹的鸵鸟  ·  java.lang.IndexOutOfBo ...·  9 月前    · 
暗恋学妹的鸵鸟  ·  git tag ...·  10 月前    · 
威武的香瓜  ·  [转]Entity Framework ...·  8 小时前    · 

alias: import 'xyz' import 'xyz/file.js'
{} /abc/node_modules/xyz/index.js /abc/node_modules/xyz/file.js
{ xyz: '/abc/path/to/file.js' } /abc/path/to/file.js error
{ xyz$: '/abc/path/to/file.js' } /abc/path/to/file.js /abc/node_modules/xyz/file.js
{ xyz: './dir/file.js' } /abc/dir/file.js error
{ xyz$: './dir/file.js' } /abc/dir/file.js /abc/node_modules/xyz/file.js
{ xyz: '/some/dir' } /some/dir/index.js /some/dir/file.js
{ xyz$: '/some/dir' } /some/dir/index.js /abc/node_modules/xyz/file.js
{ xyz: './dir' } /abc/dir/index.js /abc/dir/file.js
{ xyz: 'modu' } /abc/node_modules/modu/index.js /abc/node_modules/modu/file.js
{ xyz$: 'modu' } /abc/node_modules/modu/index.js /abc/node_modules/xyz/file.js
{ xyz: 'modu/some/file.js' } /abc/node_modules/modu/some/file.js error
{ xyz: 'modu/dir' } /abc/node_modules/modu/dir/index.js /abc/node_modules/modu/dir/file.js
{ xyz$: 'modu/dir' } /abc/node_modules/modu/dir/index.js /abc/node_modules/xyz/file.js

 
推荐文章