mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
a950e9d095
* 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
21 lines
395 B
JSON
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"
|
|
]
|
|
}
|