After doing npm install and gulp development I get some missing libraries so I npm i again, that's when jspm kicks in and downloads the entire web to my disk. Is it meant to do that?
Being new to jspm I hoped that it wouldn't replicate the modules that are already in node_modules what is going on? Am I missing something?
npm is just for dev mode so ts is happy... until ts 2.0 is out and supports module mapping, at which point node_modules will go away completely and only jspm used... hope this clears things up
After doing
npm install
andgulp development
I get some missing libraries so Inpm i
again, that's when jspm kicks in and downloads the entire web to my disk. Is it meant to do that?Being new to jspm I hoped that it wouldn't replicate the modules that are already in
node_modules
what is going on? Am I missing something?