我遵循Tour of Heroes教程,一切工作正常,除了一件事:當我導入自定義模塊時,我必須申報與.js
擴展的導入,否則我得到一個404:Angular2:模塊沒有正確導入
//This works fine
import {Component} from 'angular2/core';
//This gives me a 404 module not found (http://localhost:3000/assets/html/app/hero)
import {HeroDetailComponent } from './hero-detail.component';
//This works fine but the editor (VS Code) don't like it
import {HeroDetailComponent } from './hero-detail.component.js';
我錯過了什麼嗎?