我已經嘗試過包括分型線,但是,這並不解決這個問題對我來說凌打字稿插件無法找到名爲「描述」
這裏是我的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"
],
"types": [
"jasmine"
]
}
}
node_modules的路徑是正確的
你使用的是什麼版本的typescrpt atom插件?什麼是插件的名稱? – prosti
如果你認爲這是一個bug,最好在github上打開一個問題。同時添加所有可以讓某人重現的細節。 –
@prosti原子和插件名稱的最新版本是atom-typescript –