grafana/tsconfig.json
Kirill Freiman 643735f590
tsconfig: set jsx option to "react" (#23335)
Explicit setting of this option helps to vscode properly work with .tsx files (https://github.com/Microsoft/vscode/issues/15814)
2020-04-03 13:48:41 -07:00

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