fleet/tsconfig.json
Gabriel Hernandez a950e9d095
Feat/update query doc sidepanel (#8214)
* create new components for query side panel

* add reusable icon component that uses svg for icons

* integrate with new osquery_fleet_schema.json data

* update UI to work with osquery_fleet_schema.json

* add remark-gfm to safely support direct urls in markdown

* move fleet ace into markdown component so we can render code with ace editor

* add testing for new query sidebar

* remove incomplete tests for query sidepanel
2022-10-14 17:45:57 +01:00

21 lines
395 B
JSON

{
"extends": "@tsconfig/recommended/tsconfig.json",
"compilerOptions": {
"baseUrl": "./frontend",
"target": "ES2019",
"sourceMap": true,
"jsx": "react",
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true
},
"include": [
"./frontend/**/*"
],
"exclude": [
"node_modules"
],
"typeRoots": [
"./node_modules/@types", "./typings"
]
}