按照Aurelia中的文件夹进行整理

时间:2016-10-31 18:44:28

标签: aurelia aurelia-navigation

我想要一个像这样的文件夹结构:

src/energy/
 -- energy.ts
 -- energy.html
 -- energyDataApi
 -- more files...

你如何在奥里利亚设置这个?

我已尝试过功能设置:http://aurelia.io/hub.html#/doc/article/aurelia/framework/latest/app-configuration-and-startup/6,但继续在http://localhost:5000/dist/energy.js上获得404。我使用的是https://github.com/aurelia/skeleton-navigation/tree/master/skeleton-typescript-aspnetcore示例中的ASP.Net Core,TypeScript,SystemJs,Gulp。

main.ts

export function configure(aurelia: Aurelia) {
  aurelia.use
    .standardConfiguration()
    .developmentLogging()
    .feature('energy');

index.ts

export function configure(config) {
  config.globalResources(['./energy']);
}

0 个答案:

没有答案