fleet/ee/fleetd-chrome/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

23 lines
576 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "react",
"lib": ["es2020", "dom"],
"module": "es2020",
"moduleResolution": "bundler",
"outDir": "dist/js",
"rootDir": "src",
"sourceMap": true,
"skipLibCheck": true,
"strict": false,
"target": "es2015",
"types": ["chrome", "jest", "node"]
},
"exclude": [
"node_modules",
"jest.config.js",
"jest.setup.ts",
"jsdomwithfetch.ts"
],
}