1. 타이핑을 설치합니다.
npm install typings --global
2. 프로젝트에서 타이핑을 초기화합니다.
typings init
(추천 학습: java 비디오 튜토리얼)
3. 프로젝트 아래에 jsconfig.json을 추가합니다. 내용은 다음과 같습니다.
{ // See https://go.microsoft.com/fwlink/?LinkId=759670 // for the documentation about the jsconfig.json format "compilerOptions": { "target": "es5", "module": "commonjs", "allowSyntheticDefaultImports": true }, "exclude": [ "node_modules", "bower_components", "jspm_packages", "tmp", "temp" ] }
4 원하는 프롬프트를 설치합니다.
typings install dt~node --global --save typings install express --ambient --save
추천 관련 튜토리얼: vscode tutorial
위 내용은 vscode는 js에서 스마트 프롬프트를 수행할 수 없습니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!