Answers for "disable strict mode angular"

0

disable strict mode angular

//Following Angular doc, the strict mode can be 
//disabled turning off these flags on tsconfig.json file:

   "forceConsistentCasingInFileNames": false,
   "strict": false,
   "noImplicitReturns": false,
   "noFallthroughCasesInSwitch": false,
   ...
   "angularCompilerOptions": {
      "strictInjectionParameters": false,
      "strictInputAccessModifiers": false,
      "strictTemplates": false
   }
Posted by: Guest on July-26-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language