mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
e33bbb8811
* rework data table, got to point of calling network request correctly * got to point of rendering table columns and data * finish up functional changes to data table * fix tests * fix styles for table container and data table * clean up some styles * update to styles for no host configured * cleanup and docs * add missing method for host table text formatting * disabling unused test. will add back in next PR * clean up code
19 lines
323 B
JSON
19 lines
323 B
JSON
{
|
|
"extends": "@tsconfig/recommended/tsconfig.json",
|
|
"compilerOptions": {
|
|
"baseUrl": "./frontend",
|
|
"target": "ES2016",
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
},
|
|
"include": [
|
|
"./frontend/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"typeRoots": [
|
|
"./node_modules/@types", "./typings"
|
|
]
|
|
}
|