From 3162919ff812a36d68b4f1febf3aff0b63e57474 Mon Sep 17 00:00:00 2001 From: mehmet-erim Date: Tue, 9 Nov 2021 15:34:29 +0300 Subject: [PATCH] disable strict mode --- npm/ng-packs/apps/dev-app/tsconfig.json | 8 ++++---- npm/ng-packs/tsconfig.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/npm/ng-packs/apps/dev-app/tsconfig.json b/npm/ng-packs/apps/dev-app/tsconfig.json index 38576d131e..13552f8b6a 100644 --- a/npm/ng-packs/apps/dev-app/tsconfig.json +++ b/npm/ng-packs/apps/dev-app/tsconfig.json @@ -15,14 +15,14 @@ ], "compilerOptions": { "forceConsistentCasingInFileNames": true, - "strict": true, + "strict": false, "noImplicitReturns": false, "noFallthroughCasesInSwitch": true, - "allowSyntheticDefaultImports": true + "allowSyntheticDefaultImports": true, }, "angularCompilerOptions": { "strictInjectionParameters": true, - "strictInputAccessModifiers": true, - "strictTemplates": true + "strictInputAccessModifiers": false, + "strictTemplates": false } } diff --git a/npm/ng-packs/tsconfig.json b/npm/ng-packs/tsconfig.json index 9c8efe24b8..d18b0dffb6 100644 --- a/npm/ng-packs/tsconfig.json +++ b/npm/ng-packs/tsconfig.json @@ -1,7 +1,7 @@ { "compileOnSave": false, "compilerOptions": { - "strict": true, + "strict": false, "sourceMap": true, "declaration": false, "moduleResolution": "node",