Revision d214e79485ec49c22a2d07333e26393951d77f2b authored by George Kalpakas on 05 February 2021, 10:49:10 UTC, committed by Alex Rickabaugh on 09 February 2021, 18:47:19 UTC
This commit removes some styles from `_api-list.scss` that are no longer
used (i.e. either their CSS selectors do not match any element in the
app or they are overridden by other rules).

PR Close #40704
1 parent 3224c52
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