import {Aurelia} from 'aurelia-framework'; import 'bootstrap'; export function configure(aurelia: Aurelia) { aurelia.use .standardConfiguration() .developmentLogging() .plugin('aurelia-star-rate'); // Uncomment the line below to enable animation. // aurelia.use.plugin('aurelia-animator-css'); // Anyone wanting to use HTMLImports to load views, will need to install the following plugin. // aurelia.use.plugin('aurelia-html-import-template-loader') aurelia.start().then(() => aurelia.setRoot()); }