webstorm-disable-index

auto disable webstorm index for node_modules

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
webstorm-disable-index
2401.2.06 years ago7 years agoMinified + gzip package size for webstorm-disable-index in KB

Readme

webstorm-disable-index

Init default webstorm config.
usage:
// package.json
"devDependencies": {
  "webstorm-disable-index": "1"
},
"config": {
  "webstorm": {
    // ignore the whole node_modules, but add these as lib
    "index": ["egg", "egg-init"]
  }
}

usage2: support sub modules
// support casade modules parse
Supposing below webstorm project case:
|--- package.json (root)
|--- node-server
  |-- package.json
|--- static-server
  |-- package.json
|--- static-server2
  |-- package.json

You just add dependencies in root package.json, and then all sub modules's nodemodules are disabled from the whole project
// package.json
"devDependencies": {
  "webstorm-disable-index": "1"
},
"config": {
  "webstorm": {
    "modules": ["node-server", "static-server", "static-server2"]
  }
}