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