https://github.com/angular/angular
Revision bfb738c3c372621d020ae7799c9336aefad1ce38 authored by Joey Perrott on 03 June 2021, 17:54:36 UTC, committed by Andrew Kushnir on 12 July 2021, 21:39:08 UTC
Create a `spawnSync` command for common usage, additionally update naming to use `spawn` instead of
`spawnWithDebugOutput`

PR Close #42394
1 parent eeef3e7
Raw File
Tip revision: bfb738c3c372621d020ae7799c9336aefad1ce38 authored by Joey Perrott on 03 June 2021, 17:54:36 UTC
refactor(dev-infra): add spawnSync to child process utils, normalize naming of child-process utils (#42394)
Tip revision: bfb738c
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