Home > Web Front-end > JS Tutorial > body text

How to enhance the js code prompt function in vscode

零下一度
Release: 2018-05-14 10:20:39
Original
21506 people have browsed it

This article mainly introduces to you the relevant information on how to enhance the js code prompt function in vscode. The article introduces it in detail through the sample code, which has certain reference and learning value for everyone. Friends who need it will follow the editor below. Get up and study.

Use types to enhance the javascriptcode prompt function in vscode

Microsoft’s vscode editor is the best choice for developing typescript projects, and it is also developed using typescript.

Students who have used ts all know the *.d.ts type declaration file. Its management tools, from the initial tsd, to later typings, to the current @types, the type declaration file is ts's smart prompts and type checking provide strong support.

We can also use type declaration files to enhance the intelligent prompts when editing JavaScript in vscode.

Installation types files

Now, we can use npm to install the required types files directly without relying on typings .

For example, if we want to install the sequelize type file, we can use it directly:

npm install @types/sequelize --save-dev
Copy after login

After the installation is completed, we found a file in the node_modules directory @types directory, which contains all installed type declaration files.

If some third-party npm packages do not officially provide type declaration files, installation errors may occur and the corresponding packages cannot be found. At this time, you cannot use its prompt function to enhance the js code.

If you are familiar with how to write *.d.ts files using ts, you can also write one yourself.

Configure jsconfig.json file

For detailed description of jsconfig.json file, please refer here.

Add in the jsconfig.json file:

"include": [
 "model/**",
 "service/**"
],
"typeAcquisition": {
 "include": [
  "sequelize"
 ]
}
Copy after login

The typeAcquisition parameter is required, indicating that the type awareness function is enabled, and the include identification inside it is for which Package enabled.

The include above is not necessary, it is just used to identify which files the jsconfig.json file affects.

After it is turned on, as shown in the figure:


What the example in the picture above suggests is Instance methods and attributes of the Model class in the sequelize package.

vscode also gives a certain summary of the icons of intelligent perception:

##Enable semantic checking in js files

If you want to enable type checking in js, you can add // @ts-check

comments at the top of the file .

// @ts-check
let easy = 'abc'
easy = 123 // Error: Type '123' is not assignable to type 'string'
Copy after login

Or configure it in jsconfig.json:

{
  "compilerOptions": {
    "checkJs": true
  },
  "exclude": [
    "node_modules"
  ]
}
Copy after login

The above is the detailed content of How to enhance the js code prompt function in vscode. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!