https://github.com/grafana/grafana
Raw File
Tip revision: f92964852f42681f2e7007660ec75fb75c742941 authored by Alex Weaver on 24 January 2023, 21:02:40 UTC
Embed copy of state struct in StateTransition
Tip revision: f929648
tsconfig.json
{
  "compilerOptions": {
    "jsx": "react",
    "baseUrl": "public/",
    "outDir": "public/dist",
    "rootDirs": ["public/"],
    "allowJs": true,
    "strict": true,
    "resolveJsonModule": true,
    "useUnknownInCatchVariables": true,
    "incremental": true,
    "tsBuildInfoFile": "./tsconfig.tsbuildinfo",
    "preserveSymlinks": 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",
    "packages/grafana-ui/src/types"
  ]
}
back to top