mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
<!-- Add the related story/sub-task/bug number, like Resolves #123, or remove if NA --> **Related issue:** Resolves # # Checklist for submitter If some of the following don't apply, delete the relevant line. - [x] Changes file added for user-visible changes in `changes/`, `orbit/changes/` or `ee/fleetd-chrome/changes`. See [Changes files](https://github.com/fleetdm/fleet/blob/main/docs/Contributing/guides/committing-changes.md#changes-files) for more information. ## Testing - [ ] QA'd all new/changed functionality manually
21 lines
610 B
JSON
21 lines
610 B
JSON
{
|
|
"extends": "@tsconfig/recommended/tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "ES2019",
|
|
"moduleResolution": "bundler",
|
|
"noUncheckedSideEffectImports": false,
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"lib": ["ES2021.String", "ES2020.Promise"],
|
|
"types": ["*"],
|
|
"paths": {
|
|
"*": ["./frontend/*"],
|
|
"node-sql-parser": ["./node_modules/@sgress454/node-sql-parser"]
|
|
}
|
|
},
|
|
"include": ["./frontend/**/*"],
|
|
"exclude": ["node_modules"],
|
|
"typeRoots": ["./node_modules/@types", "./typings"]
|
|
}
|