Monday, June 3, 2019

Angular workspace details

Package.json - minimum version of the package required

package-lock.json - records the exact version of each installed package which allows you to re-install them. Future installs will be able to build an identical dependency tree

angular.json - CLI configuration defaults for all projects in the workspace, including configuration options for build, serve, and test tools that the CLI uses, such as TSLintKarma, and Protractor.

tsconfig.json - It tells about the complier options in which the tyepscript should be transpiled, before executing on the browser. Default TypeScript configuration for apps in the workspace, including TypeScript and Angular template compiler options. 


"target": "es5",

es5 - javascript


tslint.json - 

No comments:

Post a Comment