我尝试使用tsconfig.js将我的angular2应用程序与typescript编译器捆绑在一起,如下所示:
{
"compilerOptions": {
"target": "es5",
"module": "system",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [ "es2015", "dom" ],
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"outFile": "bundle.js"
}
}
它创建了一个bundle.js但没有任何角度依赖性。它只包含我自己的组件和打字稿文件。知道如何告诉编译器将引用的依赖项也包含在bundle中吗?