How do you provide configuration inheritance?
Angular Compiler supports configuration inheritance through extends in the tsconfig.json on angularCompilerOptions. i.e, The configuration from the base file(for example, tsconfig.base.json) are loaded first, then overridden by those in the inheriting config file.
{"extends": "../tsconfig.base.json","compilerOptions": {"experimentalDecorators": true,...},"angularCompilerOptions": {"fullTemplateTypeCheck": true,"preserveWhitespaces": true,...}}
February 13, 2022
218
Read more
What is Angular Framework?
November 04, 2022
AngularWhat is a Angular module?
November 03, 2022
AngularWhat are the steps to use animation module?
October 31, 2022
Angular