Revision 1e58a8c05d8fd4e39d664ac56516fa7681d4bd56 authored by Alan Agius on 06 December 2022, 11:49:32 UTC, committed by Andrew Kushnir on 06 December 2022, 17:58:22 UTC
Previously, the `budgets` was not wrapped in quotes which caused the JSON to be invalid.

PR Close #48375
1 parent 40d6a06
Raw File
tsconfig.json
{
  "compilerOptions": {
    "baseUrl": ".",
    "declaration": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "module": "commonjs",
    "esModuleInterop": true,
    "moduleResolution": "node",
    "outDir": "../dist/tools/",
    "noImplicitAny": true,
    "noFallthroughCasesInSwitch": true,
    "paths": {},
    "rootDir": ".",
    "sourceMap": true,
    "inlineSources": true,
    "lib": [
      "es6",
      "dom"
    ],
    "target": "es5",
    "skipLibCheck": true,
    "types": [
      "node"
    ]
  },
  "exclude": [
    "testing",
    "node_modules",
    "typings-test",
    "public_api_guard",
    "docs"
  ],
  "bazelOptions": {
    "suppressTsconfigOverrideWarnings": true
  }
}
back to top