I followed the launch of the JSPM guide and I want to install the jquery package to execute the command below.
jspm install jquery
But when I try to import it into typescript as below
import $ from 'jquery'
I get a message from the typescript error TS2307: Cannot find module 'jquery'. Not only for this library for other libraries, I get the same error.
source share