mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
15 lines
419 B
JSON
15 lines
419 B
JSON
{
|
|
"extends": "@tsconfig/recommended/tsconfig.json",
|
|
"compilerOptions": {
|
|
"baseUrl": "./frontend",
|
|
"target": "ES2019",
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"lib": ["ES2021.String", "ES2020.Promise"]
|
|
},
|
|
"include": ["./frontend/**/*"],
|
|
"exclude": ["node_modules"],
|
|
"typeRoots": ["./node_modules/@types", "./typings"]
|
|
}
|