Revision d40bfd4f10be94a11daac9f5825911776c965cc0 authored by mshaferweb on 28 September 2020, 08:12:01 UTC, committed by GitHub on 28 September 2020, 08:12:01 UTC
typo ... without or without
1 parent 3188524
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