Visual Studio Code plugin that autocompletes npm modules in import statements.
In the command palette (cmd-shift-p) select Install Extension and choose npm Intellisense.
Something missing? Found a bug? - Create a pull request or an issue. Github
{
"npm-intellisense.importES6": true,
"npm-intellisense.importQuotes": "'",
"npm-intellisense.importLinebreak": ";\r\n",
"npm-intellisense.importDeclarationType": "const",
}{
"npm-intellisense.importES6": false,
"npm-intellisense.importQuotes": "'",
"npm-intellisense.importLinebreak": ";\r\n",
"npm-intellisense.importDeclarationType": "const",
}Npm intellisense scans only dependencies by default. Set scanDevDependencies to true to enable it for devDependencies too.
{
"npm-intellisense.scanDevDependencies": true,
}Shows build in node modules like 'path' of 'fs'
{
"npm-intellisense.showBuildInLibs": true,
}Look for package.json inside nearest directory instead of workspace root. It's enabled by default.
{
"npm-intellisense.recursivePackageJsonLookup": true,
}Open subfolders of a module. This feature is work in progress and experimental.
{
"npm-intellisense.packageSubfoldersIntellisense": false,
}This software is released under MIT License



