https://github.com/grafana/grafana
Raw File
Tip revision: 4eb154227d86a7dec256d97627e3321e0b5f0067 authored by achatterjee-grafana on 23 September 2020, 13:35:23 UTC
Made changes to Manage user and Prereq section of Transformations Overview topics.
Tip revision: 4eb1542
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"
  ]
}
back to top