我将Typescript设置为1.5角应用程序。为了使gulp编译TS文件没有错误,我必须添加以下内容:
///<reference path="../../../../typings/angularjs/angular.d.ts" />
使用节点模块&#34; tsd&#34;
来填充Typings文件夹所以这意味着:
是否无法自动获取TSD文件,还可以自动化插入gulp编译?
答案 0 :(得分:0)
在System.config({
map: {
'@angular': 'vendor/@angular',
'rxjs': 'vendor/rxjs',
'main': 'main.js',
'ng2-dnd': '../node_modules/ng2-dnd'
},
packages: cliSystemConfigPackages
});
中使用exclude
。将您不希望tsconfig.json
使用的路径放在那里。 tsc
会自动查找项目中的所有打字稿文件。
示例tsc
tsconfig.json
:
exclude