https://github.com/grafana/grafana
Raw File
Tip revision: d0da5e04a27ee8de0b7c9d8e0ab60474eeaf7fd2 authored by Ryan McKinley on 17 December 2021, 22:03:13 UTC
show all data in tooltip
Tip revision: d0da5e0
tsconfig.json
{
  "compilerOptions": {
    "jsx": "react",
    "baseUrl": "public/",
    "outDir": "public/dist",
    "rootDirs": ["public/"],
    "allowJs": true,
    "strict": true,
    "resolveJsonModule": true,
    "useUnknownInCatchVariables": false,
    "incremental": 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