1//Following Angular doc, the strict mode can be
2//disabled turning off these flags on tsconfig.json file:
3
4 "forceConsistentCasingInFileNames": false,
5 "strict": false,
6 "noImplicitReturns": false,
7 "noFallthroughCasesInSwitch": false,
8 ...
9 "angularCompilerOptions": {
10 "strictInjectionParameters": false,
11 "strictInputAccessModifiers": false,
12 "strictTemplates": false
13 }
14