grafana/tsconfig.json
Hugo Häggmark 4b711372c5
Tests: Adds expects for observables (#28929)
* 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
2020-11-18 15:18:55 +01:00

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"
]
}