fleet/tsconfig.json
Ian Littman f829170923
Update to TypeScript 6.0 (#43141)
<!-- 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
2026-04-09 08:28:59 -05:00

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"]
}