fleet/tsconfig.json
gillespi314 deeaf9d036
Add ability to detect compatibility and update which hosts are checked for a policy (#4703)
Add new usePlatformSelector custom hook
Add new usePlatformCompatibility custom hook
Add new PlatformSelector global component
Refactor PlatformCompatibility as global component
Refactor sql_tools to TypeScript
Improve type definitions for context/policy
Align PolicyPage and QueryPage with platform compatibility changes
2022-03-21 11:51:00 -05:00

20 lines
364 B
JSON

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