1
我已經設置了一個node.js項目,我想使用VS-Code + Typescript。 如果我使用平滑的Javascript intellisense工作正常,VS-Code甚至會從緩存(例如〜/.cache/typescript/2.5/node_modules/@types/rethinkdb/index.d.ts)加載Typescript定義。但在.ts文件中,這根本不起作用。VS代碼智能感知適用於Javascript文件,但不適用於TypeScript文件
的.js文件(instellisense工作) 的.ts文件(智能感知不工作)
這兩個文件都在同一個文件夾中。 我tsconfig.json樣子:
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"sourceMap": true,
"watch": true
}
}
我缺少一個配置選項還是什麼?
如果你的鼠標懸停在「rethinkdb」,它會給你一個文件路徑嗎?你嘗試過「三重砍」嗎? /// https://www.typescriptlang.org/docs/handbook/triple-刀耕火種directives.html –