我在 Ubuntu 16.04 中使用 VSCode , TypeScript 2.0.2 ,这种情况发生了:
但该应用程序完美无缺。这是一个vscode问题。它发生在其他类型,如Array。
我应该安装一个插件吗?我已经安装了TypeScript Hero
更新:在这里,我的tsconfig.json
{
"compilerOptions": {
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": ["es6", "dom"],
"mapRoot": "./",
"module": "es6",
"moduleResolution": "node",
"outDir": "../dist/out-tsc",
"sourceMap": true,
"target": "es5",
"typeRoots": [
"../node_modules/@types"
]
}
}