https://github.com/grafana/grafana
Raw File
Tip revision: 3bd4b8756af99e8b0c6ad873747fe82f15be99ed authored by Shahzad on 08 December 2020, 18:55:50 UTC
PanelHeader: Fix panel header description inline code wrapping (#29628)
Tip revision: 3bd4b87
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