作为代码下面,我是angular2的新手,为什么当我使用" app / app.module"轻型服务器返回错误:
import {AppModule} from "app/app.module";//wrong
import {AppModule} from "./app.module"; //right
app / main.ts(5,25):错误TS2307:找不到模块' /app/app.module'。
问题是什么?有没有办法使用"app/app.module"
?
this is the structure image, exactly flow the angular 2 tut.
I think the problem is because of tsconfig.json, from angular 2 tut. but I dont know how to fix it.
谢谢大家
答案 0 :(得分:0)
AppModule的路径是相对于当前文件的。
如果您使用Webpack或SystemJS导入,则应遵循此步骤 约束
AppModule _> same folder
./AppModule -> inside a file
../AppModule -> go out from current directory