Revision 4887c3d95bed3db9552ffbd82272f475895cdacc authored by Eric Leijonmarck on 04 January 2024, 16:37:03 UTC, committed by grafana-delivery-bot[bot] on 04 January 2024, 16:39:08 UTC
* fix: link to enterprise issue

* fix: remove link to enterprise

(cherry picked from commit 29c251851d576b79bf97e45fbec638666643c1b3)
1 parent c0ee149
Raw File
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,
    "paths": {
      "@grafana/schema/dist/esm/*": ["../packages/grafana-schema/src/*"]
    }
  },
  "extends": "@grafana/tsconfig/base.json",
  "include": [
    "public/app/**/*.ts*",
    "public/e2e-test/**/*.ts",
    "public/test/**/*.ts",
    "public/vendor/**/*.ts",
    "packages/grafana-data/typings",
    "packages/grafana-ui/src/types"
  ],
  "exclude": ["public/app/**/webpack.config.ts"]
}
back to top