2015-09-15 13:23:36 +02:00
|
|
|
{
|
2018-07-25 16:16:33 +02:00
|
|
|
"compilerOptions": {
|
2020-04-03 23:48:41 +03:00
|
|
|
"jsx": "react",
|
2020-02-07 20:40:04 -05:00
|
|
|
"baseUrl": "public/",
|
2018-07-25 16:16:33 +02:00
|
|
|
"outDir": "public/dist",
|
|
|
|
|
"paths": {
|
2020-02-07 20:40:04 -05:00
|
|
|
"@grafana/slate-react": ["../node_modules/@types/slate-react"],
|
|
|
|
|
"app": ["app/"],
|
|
|
|
|
"sass": ["sass/"]
|
2019-03-25 12:08:28 +01:00
|
|
|
},
|
2020-02-07 20:40:04 -05:00
|
|
|
"rootDirs": ["public/"],
|
2020-04-02 13:34:16 +02:00
|
|
|
"typeRoots": ["node_modules/@types", "public/app/types"],
|
|
|
|
|
"allowJs": true
|
2018-07-25 16:16:33 +02:00
|
|
|
},
|
2020-02-07 20:40:04 -05:00
|
|
|
"extends": "@grafana/tsconfig/base.json",
|
2020-04-02 13:34:16 +02:00
|
|
|
"include": [
|
|
|
|
|
"public/app/**/*.ts*",
|
|
|
|
|
"public/e2e-test/**/*.ts",
|
|
|
|
|
"public/test/**/*.ts",
|
|
|
|
|
"public/vendor/**/*.ts",
|
|
|
|
|
"packages/jaeger-ui-components/typings"
|
|
|
|
|
]
|
2018-08-30 08:33:29 +02:00
|
|
|
}
|