Skip to content

Commit

Permalink
Partial ivy compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel committed Jun 15, 2023
1 parent bc2f17f commit d5a3ba0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 3 additions & 1 deletion projects/sc-clr-autocomplete/tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
"strictMetadataEmit": true,
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true,
"enableResourceInlining": true
"enableResourceInlining": true,
"enableIvy": true,
"compilationMode": "partial"
},
"exclude": [
"src/test.ts",
Expand Down
3 changes: 2 additions & 1 deletion projects/sc-clr-autocomplete/tsconfig.lib.prod.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"extends": "./tsconfig.lib.json",
"angularCompilerOptions": {
"enableIvy": false
"enableIvy": true,
"compilationMode": "partial"
}
}
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true
"strictInjectionParameters": true,
"enableIvy": true,
"compilationMode": "partial"
}
}

0 comments on commit d5a3ba0

Please sign in to comment.