atom-ternjs
atom-ternjs copied to clipboard
Provide autocomplete for certain modules
I'm trying to get autocomplete for discord.js however with this config it doesn't work
I assume the dontLoad overrides the loadEagerly however i dont want autocomplete for all the packages if its expensive
{
"ecmaVersion": 8,
"libs": [],
"loadEagerly": [
"node_modules/discord.js/src/index.js"
],
"dontLoad": [
"node_modules/**"
],
"plugins": {
"es_modules": {},
"node": {},
"doc_comment": {
"fullDocs": true,
"strong": true
}
}
}
Removing both paths in loadEagerly and dontLoad makes it work