After making changes to app.component.ts, I have noticed that the modifications do not immediately appear in app.component.js. It seems like I need to manually build the project for the changes to take effect.
My main objective is to see Angular 2 code updates reflected in the browser as soon as I save them. Ideally, I would like to skip the step of initiating a build process every time I make a modification.
Below is the content of my tsconfig.json file:
{
"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"
]
}