I have defined the following Angular2 component:
import {Component} from \'angular2/core\'; @Component({ selector: \'my-app\', moduleId: module.id, te
module.id
cannot find the name module.
Follow following steps to resolves this issue,
step 1: Install node module by using the below command
npm i @types/node --save
Step 2: modify the file tsconfig.app.json under src/app
tsconfig.app.json
src/app
"types": [ "node" ]