Revision 35a145dd63abb66152e02da2b40686990f9d00a3 authored by Torkel Ödegaard on 23 September 2020, 05:33:12 UTC, committed by GitHub on 23 September 2020, 05:33:12 UTC
* Docs: Updated table docs, moved annotations notice down

* Removed unnessary notices

* Updated wording
1 parent c4c0e02
Raw File
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