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 bf6397e8730f..5e90ab14afdf 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 e173ae0ba980..4f6d2df991d6 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 f902746e921a..6660991e49f4 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,