我在使用TypeScript时遇到了Visual Studio代码智能感知的问题。 当我输入“ myobject。”时,我没有自动完成功能。当我用ctrl +空格强制它时,我得到了负载... 如果我在代码上等待了5分钟,那么我最终将设法完成自动完成,但是每次我要使用智能感知时,我都必须等待5分钟。
我尝试使用npm install -g打字稿。
我还要检查是否启用了“ TypeScript和JavaScript语言功能”。
这是我的tsconfig.json
{
"compilerOptions": {
"noImplicitAny": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "es2015",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2018",
"dom"
],
"paths": {
"@angular/*": ["node_modules/@angular/*"]
}
},
"typeRoots": [
"node_modules/@types"
],
"exclude": [
"node_modules",
"out",
"src/**/*.spec.ts",
"src/test.ts",
"../node_modules"
],
"include": [
"src/**/*.ts",
"plugins/cordova-plugin-file/types/index.d.ts"
],
"compileOnSave": false,
"atom": {
"rewriteTsconfig": false
}
}
您能帮我使智能感知正常工作吗?
答案 0 :(得分:1)
我通过卸载Visual Studio代码并安装了webstorm来对其进行了修复。
答案 1 :(得分:0)
如果已安装,请尝试卸载“ debugger-for-chrome”扩展程序。