我正在努力弄清楚如何让 VS 2015 使用 Angular 2 和 Angular Material 2 构建 MVC 项目。我在构建时收到错误找不到名称 HammerManger。
我已将 node_modules 中的所有 @angular 复制到 wwwroot/lib/angular2 并将 node_modules 中的所有 @types 复制到 wwwroot/lib/@types
tsconfig.json
{
"compilerOptions": {
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "system",
"moduleResolution": "node",
"noEmitOnError": true,
"noImplicitAny": false,
"removeComments": false,
"sourceMap": true,
"target": "es5"
},
"compileOnSave": true,
"exclude": [
"node_modules",
"wwwroot/lib"
],
"types": [
"hammerjs"
]
}
我错过了什么?