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
23 lines
576 B
JSON
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"
|
|
],
|
|
}
|