Ivy angular 9 code example
Example 1: how stop ivy in angualr 9
{
"compilerOptions": {
"module": "esnext",
// ...
},
"angularCompilerOptions": {
"enableIvy": true,
"allowEmptyCodegenFiles": true
}
}
Example 2: how stop ivy in angualr 9
npm i -g @angular/cli@latestng update
Example 3: how stop ivy in angualr 9
{
"projects": {
"your-project": {
"architect": {
"build": {
"options": {
...
"aot": true,
}
}
}
}
}
}