我正在开发一个 Angular2-Typescript 应用程序。我已经使用 angular-cli 生成了项目,如下所示:
ng new myApp
但是当我创建一个新组件时,@Component 标签上会出现一个警告。
我试图解决这个帖子:
但对我不起作用。
我附上我的 tsconfig.json:
{
"compilerOptions": {
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": ["es6", "dom"],
"mapRoot": "./",
"module": "es6",
"moduleResolution": "node",
"outDir": "../dist/out-tsc",
"sourceMap": true,
"target": "es6",
"typeRoots": [
"../node_modules/@types"
]
}
}
打字稿版本是:“打字稿”:“2.0.2”