If I make changes to app.component.ts and save the file, this change will not appear in app.component.js until I manually create the project.
My goal is to have Angular 2 code changes displayed in the browser after saving. I did not have to do the assembly 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" ] }
Derek source share