https://github.com/grafana/grafana
Raw File
Tip revision: 2d5f53d4c536c047444beafffc135f24df8b24b3 authored by Andrej Ocenas on 18 May 2021, 14:30:27 UTC
NodeGraph: Show gradient fields in legend (#34078)
Tip revision: 2d5f53d
tsconfig.json
{
  "compilerOptions": {
    "jsx": "react",
    "baseUrl": "public/",
    "outDir": "public/dist",
    "paths": {
      "@grafana/slate-react": ["../node_modules/@types/slate-react"],
      "app": ["app/"],
      "sass": ["sass/"]
    },
    "rootDirs": ["public/"],
    "typeRoots": ["node_modules/@types", "public/app/types"],
    "allowJs": true,
    "strictNullChecks": true
  },
  "extends": "@grafana/tsconfig/base.json",
  "include": [
    "public/app/**/*.ts*",
    "public/e2e-test/**/*.ts",
    "public/test/**/*.ts",
    "public/vendor/**/*.ts",
    "packages/jaeger-ui-components/typings",
    "packages/grafana-data/typings"
  ]
}
back to top