If I make a change to app.component.ts and save the file, the change won't appear in app.component.js until I build the project manually.
My goal is to have Angular 2 code changes reflected in the browser after I save. I shouldn't have to do a build every time.
Here is my tsconfig.json:
{
"compilerOptions": {
"target": "es5",
"module": "system",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false
},
"exclude": [
"node_modules",
"typings/main",
"typings/main.d.ts"
]
}