我按照Angular2文档设置了一个Angular2项目
当我想从Component
打字稿中导入@angular/core
时,会出现此错误
不包含“C:/sendbox/mean/client/app/app.component.ts”文件 在TypeScript编译上下文中。如果不是这样, 请检查tsconfig.json的“files”或“filesGlob”部分 file.at第1行第1列
答案 0 :(得分:1)
tsconfig.json
不在app
。符合http://www.typescriptlang.org/docs/handbook/tsconfig-json.html
使用tsconfig.json
By invoking tsc with no input files, in which case the compiler searches for the tsconfig.json file starting in the current directory
继续父目录链。 通过调用没有输入文件的tsc和--project(或只是-p)命令行选项来指定包含目录的路径 tsconfig.json文件,或包含该文件的有效.json文件的路径 配置。