fleet/tsconfig.json
Martavis Parker 3af64748ab
Pressing Enter on setup's Confirmation page (#1141)
* #917 fixed enter key for last page; TS overhaul

* #917 clean up

* Update frontend/components/forms/FormField/FormField.tsx

Co-authored-by: Zach Wasserman <zach@fleetdm.com>

* #917 fixed tests and linted

Co-authored-by: Zach Wasserman <zach@fleetdm.com>
2021-06-18 13:33:45 -07:00

20 lines
364 B
JSON

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