Angular 2教程'英雄之旅',编译后Project Explorer中的很多文件Eclipse

时间:2017-01-13 11:36:48

标签: eclipse angular

目前我正在通过教程“英雄之旅”打字稿学习Angularjs 2。到现在为止还挺好。但是在做这个教程时我注意到了一些事情。它是关于使用NodeJ编译后创建的文件。很多文件都出现了,如果你们对如何组织这些文件有一些建议,我很好奇。

A list of files!

2 个答案:

答案 0 :(得分:1)

您只需在"outDir"中设置tsconfig.json属性,并将其指向您想要的文件夹:

{
    "compilerOptions": {
        "outDir": "./build"
    }
}

这会将所有已编译的.js.map文件输出到./build文件夹。

答案 1 :(得分:0)

好的,这个问题结合了n00dl3的信息和本页“angular 2 adjust System.config() after separate javascript files and typescript files”的一些信息。

html和css的问题,你可以在'./build'文件夹中复制/粘贴这些文件。或者只是给出html和css所在的其他路径:

 @Component({ 
    templateUrl:'/example-folder-path/file.html' //this is the line
  })