Heim >Entwicklungswerkzeuge >VSCode >vscode kann keine intelligenten Eingabeaufforderungen für js ausführen
1. Typisierungen installieren.
npm install typings --global
2. Eingaben unter dem Projekt initialisieren.
typings init
(Empfohlenes Lernen: Java-Video-Tutorial)
3. Fügen Sie jsconfig.json unter dem Projekt hinzu. Der Inhalt ist wie folgt:
{ // 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. Installieren Sie die gewünschten Eingabeaufforderungen.
typings install dt~node --global --save typings install express --ambient --save
Empfohlene verwandte Tutorials: Vscode-Tutorial
Das obige ist der detaillierte Inhalt vonvscode kann keine intelligenten Eingabeaufforderungen für js ausführen. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!