Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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
   }
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #disable #strict #mode #angular
ADD COMMENT
Topic
Name
3+3 =