Answers for "angular 9 use ivy"

1

hw to disable Ivy

content_copy
      
      {
  "extends": "./tsconfig.json",
  "compilerOptions": {
    "outDir": "./out-tsc/app",
    "types": []
  },
  "files": [
    "src/main.ts",
    "src/polyfills.ts"
  ],
  "include": [
    "src/**/*.d.ts"
  ],
  "angularCompilerOptions": {
    "enableIvy": false
  }
}
Posted by: Guest on February-20-2020
0

how stop ivy in angualr 9

{
  "projects": {
    "your-project": {
      "architect": {
        "build": {
          "options": {
            ...
            "aot": true,
          }
        }
      }
    }
  }
}
Posted by: Guest on June-01-2020

Browse Popular Code Answers by Language