A recent upgrade to Angular 5.x is not allowing uncompiled TypeScript to import from a node_modules repo. It looks like the workaround is to include the .
node_modules
.
open your tsconfig.json, and change to this
{ ... "compilerOptions": { ... }, "include": [ "./src", "node_modules/example" ], "exclude" : ... }