Revision f0b5e830a5f3093459c1c6ee3c8639638dbeebf8 authored by Ryan Day on 28 April 2022, 16:29:31 UTC, committed by Dylan Hunn on 02 May 2022, 20:10:06 UTC
bazelOpts.es5Mode is being removed and replaced with devmode. Adding a
check for either will allow a smooth migration.

PR Close #45804
1 parent 0eee114
Raw File
tsconfig.json
{
  "compilerOptions": {
    "forceConsistentCasingInFileNames": true,
    "strict": true,
    "noImplicitReturns": true,
    "noFallthroughCasesInSwitch": true,
    "experimentalDecorators": true,
    "module": "commonjs",
    "moduleResolution": "node",
    "outDir": "./dist/out-tsc",
    "rootDir": ".",
    "target": "es5",
    "lib": [
      "es5",
      "dom",
      "es2015.collection",
      "es2015.iterable",
      "es2015.promise"
    ],
    "types": [],
  },
  "files": [
    "include-all.ts",
    "node_modules/@types/jasmine/index.d.ts"
  ]
}
back to top