mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 17:06:57 -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
17 lines
382 B
JSON
17 lines
382 B
JSON
{
|
|
"compilerOptions": {
|
|
"declarationDir": "dist",
|
|
"outDir": "compiled",
|
|
"rootDirs": ["."],
|
|
"typeRoots": ["node_modules/@types", "types"]
|
|
},
|
|
"exclude": ["dist", "node_modules"],
|
|
"extends": "@grafana/tsconfig",
|
|
"include": [
|
|
"src/**/*.ts*",
|
|
"typings/jest",
|
|
"../../public/app/types/jquery/*.ts",
|
|
"../../public/app/types/sanitize-url.d.ts"
|
|
]
|
|
}
|