Go to TypeSearch and search for the library you want to prompt (for example, yours is "node");
Locate the location of the type in npm, and then follow the prompts to install the type (of course package.json must be prepared);
Use import in the file to quote, see; or directly extract the d.ts file in the newly installed type and rename it, and then use the triple slash command /// <reference types="./nodejs.d.ts" /> to quote in the file (actually, this is how I usually write js) quoted).
Enable grammar prompts manually:
Go to TypeSearch and search for the library you want to prompt (for example, yours is "node");
Locate the location of the type in npm, and then follow the prompts to install the type (of course package.json must be prepared);
Use import in the file to quote, see; or directly extract the d.ts file in the newly installed type and rename it, and then use the triple slash command
/// <reference types="./nodejs.d.ts" />
to quote in the file (actually, this is how I usually write js) quoted).