Skip to content

Commit

Permalink
feat!: enable ivy by default (#2076)
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Aug 1, 2022
1 parent 5c4e3f6 commit 54dc482
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@
"lib": ["es2018", "dom"]
},
"angularCompilerOptions": {
"enableIvy": false,
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true
}
Expand Down
5 changes: 1 addition & 4 deletions projects/demo/tsconfig.app.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
{
"extends": "../../tsconfig.json",
"files": ["src/main.browser.ts", "src/polyfills.ts"],
"include": ["**/*.d.ts"],
"angularCompilerOptions": {
"enableIvy": true
}
"include": ["**/*.d.ts"]
}
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 54dc482

Please sign in to comment.