mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 08:56:43 -06:00
643735f590
Explicit setting of this option helps to vscode properly work with .tsx files (https://github.com/Microsoft/vscode/issues/15814)
24 lines
578 B
JSON
24 lines
578 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
|
|
},
|
|
"extends": "@grafana/tsconfig/base.json",
|
|
"include": [
|
|
"public/app/**/*.ts*",
|
|
"public/e2e-test/**/*.ts",
|
|
"public/test/**/*.ts",
|
|
"public/vendor/**/*.ts",
|
|
"packages/jaeger-ui-components/typings"
|
|
]
|
|
}
|