mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 08:56:43 -06:00
4b711372c5
* Tests: Adds expects for observables * Refactor: renames matcher * Chore: changed jest version and removed as dev dependency * Refactor: Changes after PR review * wip * Chore: revert * Chore: Adds jest-matcher-utils * Chore: fixed merge error * Tests: Removed inline snapshots as they are env dependent * Tests: missed a snapshot * Refactor: Removed type file after PR comments
26 lines
645 B
JSON
26 lines
645 B
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"
|
|
]
|
|
}
|