From 45f10389f31c970270cc536c1afe91c0619fdb81 Mon Sep 17 00:00:00 2001 From: Maksim Ivanov Date: Fri, 8 Jul 2022 13:21:46 +0300 Subject: [PATCH] feat!: enable ivy by default (#2076) --- .../demo/src/modules/app/stackblitz/project-files/configs.md | 1 - projects/demo/tsconfig.app.json | 5 +---- tsconfig.json | 4 ++-- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/projects/demo/src/modules/app/stackblitz/project-files/configs.md b/projects/demo/src/modules/app/stackblitz/project-files/configs.md index bf6397e8730f1..5e90ab14afdf5 100644 --- a/projects/demo/src/modules/app/stackblitz/project-files/configs.md +++ b/projects/demo/src/modules/app/stackblitz/project-files/configs.md @@ -74,7 +74,6 @@ "lib": ["es2018", "dom"] }, "angularCompilerOptions": { - "enableIvy": false, "fullTemplateTypeCheck": true, "strictInjectionParameters": true } diff --git a/projects/demo/tsconfig.app.json b/projects/demo/tsconfig.app.json index e173ae0ba9804..4f6d2df991d63 100644 --- a/projects/demo/tsconfig.app.json +++ b/projects/demo/tsconfig.app.json @@ -1,8 +1,5 @@ { "extends": "../../tsconfig.json", "files": ["src/main.browser.ts", "src/polyfills.ts"], - "include": ["**/*.d.ts"], - "angularCompilerOptions": { - "enableIvy": true - } + "include": ["**/*.d.ts"] } diff --git a/tsconfig.json b/tsconfig.json index f902746e921ad..6660991e49f4d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,8 +3,8 @@ "include": ["projects/**/*"], "exclude": ["projects/**/*.spec.ts", "projects/demo-integrations", "**/schematics/**/*"], "angularCompilerOptions": { - "enableIvy": false, - "compilationMode": "full", + "enableIvy": true, + "compilationMode": "partial", "preserveWhitespaces": false, "annotateForClosureCompiler": false, "skipTemplateCodegen": true,