I've begun working on a fantastic seed project that can be found at: https://github.com/AngularClass/angular2-webpack-starter
However, I've encountered an issue with integrating third-party modules. Can anyone offer guidance on how to properly add and utilize external modules in this project?
For instance, when trying to incorporate 'immutable' using the following command:
npm install immutable --save
After installation, I attempted to import the module within a component like so:
import * as immutable from 'immutable';
import {List} from 'immutable';
import Immutable = require('immutable');
Despite my efforts, I continue to encounter the error TS2307: Cannot find module 'immutable
'. The same issue arises when attempting to include modules such as 'moment
'.