带通配符的路径

时间:2016-01-29 08:12:06

标签: systemjs

我正在使用SystemJs。这是我的配置:

System.config({
    defaultJSExtensions: true,
    paths: {
        app: '/app/*',//for app look in app
        '*': '/node_modules/*' //for rest look in node_modules
    },
});
System.import('app/boot')
        .then(null, console.error.bind(console));

使用该配置浏览器在node_modules/app/boot.js中寻找文件 - 为什么?对于app,它应该在/app/*

中查找

0 个答案:

没有答案