"version": "1.9.0-dev.20160127"
All is good, but now:
- switch to the terminal
- npm install <== @billti this step was missing when I first reported problems with this project
- open code on this folder (or reload the window)
- open app.js
- hover over an identifer -> you get no type information
- edit the jsconfig.json so that the node_modules folder is exclude:
{
"compilerOptions": {
"target": "ES5",
"module": "commonjs"
},
"exclude": [
"node_modules"
]
}
- Restart Code.
- open app.js
- hover over an identifier -> you get type information.
These steps illustrate that Salsa has issues digesting the node_module.
"version": "1.9.0-dev.20160127"
All is good, but now:
{ "compilerOptions": { "target": "ES5", "module": "commonjs" }, "exclude": [ "node_modules" ] }These steps illustrate that Salsa has issues digesting the node_module.