Generally, you would not want to see the compiled .js file and the corresponding .js.map files when you are using the Typescript. However you can use tsconfig.json to output the js and map files to a separate folder, it makes it easier to maintain. But if you don’t use a separate folder, you can use settings.json to hide the js and map files in the project folder explorer. Continue reading “How to hide .js and .map files from project explorer in Visual Studio Code”
Tag: Angular 2
Two-way Data Binding in Angular 2 and JavaScript/ES5 – Creating a simple login form
Angular 2 has the different syntax for two way binding. AngularJS 2 is not the updated version of the AngularJS 1. It is completely rewrite framework. AngularJS 1 allows to create a applcation in a MVC pattern which has controllers, views and services etc. AngularJS 2 is the component based, means the whole application is a component which contains another set of components with the strong routing. Continue reading “Two-way Data Binding in Angular 2 and JavaScript/ES5 – Creating a simple login form”