当我更新到新的 Angular2/Material2 alpha 8.1 时,我遇到了几个错误。首先,最新的软件包似乎需要 Typescript 2.0(使用“只读”)——所以我安装了 typescript 2.0 beta。
但是现在,每当我访问该页面时,都会收到“未捕获的语法错误:意外的令牌导入”。
我需要在 Typescript 2.0 中设置/更改什么吗?
这是我的 tsconfig.json(尝试过的目标:es5 以及...):
{
"compilerOptions": {
"lib": [ "es6", "es5", "es2015", "dom" ],
"module": "commonjs",
"moduleResolution": "node",
"target": "es6",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": true,
"noImplicitAny": false
},
"exclude": [
"bin",
"node_modules",
"wwwroot/dist"
]
}
谢谢你的帮助!