From 4ff441a3e23da3ceff65d27cddeab56131084603 Mon Sep 17 00:00:00 2001 From: Joan Llenas Date: Sun, 21 Feb 2021 12:34:26 +0100 Subject: [PATCH] fix(config): turn enableIvy to false for publishing --- tsconfig.app.json | 3 +++ tsconfig.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/tsconfig.app.json b/tsconfig.app.json index df4d05e1..92c322d7 100644 --- a/tsconfig.app.json +++ b/tsconfig.app.json @@ -4,6 +4,9 @@ "outDir": "./out-tsc/app", "types": [] }, + "angularCompilerOptions": { + "enableIvy": true + }, "files": [ "src/main.ts", "src/polyfills.ts" diff --git a/tsconfig.json b/tsconfig.json index b10f040c..9fc54481 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -33,6 +33,6 @@ "angularCompilerOptions": { "fullTemplateTypeCheck": true, "strictInjectionParameters": true, - "enableIvy": true + "enableIvy": false } }