https://github.com/grafana/grafana
Raw File
Tip revision: 12303299e93dca52434f8fc2f32cbf44013b3e85 authored by Alexander Emelin on 01 July 2021, 06:30:09 UTC
live: add allowed_origins option (#36318)
Tip revision: 1230329
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