Revision 30c52ac1260e496ca4b25a182076e3b79e9ed2a0 authored by Kristiyan Kostadinov on 03 March 2022, 14:26:24 UTC, committed by Andrew Kushnir on 03 March 2022, 17:13:25 UTC
Several people on the team (myself included) have had issues where the `webdriver-manager` step of the `postinstall` script fails on the first run, but work correctly on the second one.

These changes attempt to simplify the workflow by retrying the script up to 3 times before giving up.

PR Close #45252
1 parent 6459b25
Raw File
tsconfig.json
{
  "compilerOptions": {
    "baseUrl": ".",
    "declaration": true,
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true,
    "module": "commonjs",
    "moduleResolution": "node",
    "outDir": "../dist/all/",
    "noImplicitAny": true,
    "noFallthroughCasesInSwitch": true,
    "paths": {
      "selenium-webdriver": ["../node_modules/@types/selenium-webdriver/index.d.ts"],
      "rxjs/*": ["../node_modules/rxjs/*"],
      "@angular/*": ["../dist/all/@angular/*"]
    },
    "rootDir": ".",
    "inlineSourceMap": true,
    "lib": ["es5", "dom", "es2015.promise", "es2015.collection", "es2015.iterable"],
    "skipDefaultLibCheck": true,
    "skipLibCheck": true,
    "target": "es5",
    "types": ["angular"]
  },
  "exclude": [
    "payload_tests",
    "playground/",
    "benchmarks/"
  ],
  "angularCompilerOptions": {
    "skipTemplateCodegen": true
  }
}
back to top