uppy/packages/@uppy/utils/tsconfig.json
Merlijn Vos 49522ec5cb
Remove preact/compat (#5935)
We drag it in unneccesarily in the bundle and it can cause JSX clashes
in React apps with `"jsx": "preserve"` in their `tsconfig.json`
(https://github.com/preactjs/preact/issues/4908)

- Remove `@types/react` from companion (unused)
- Fix tsconfig's for @uppy/utils (build was fine, but editor diagnostics
weren't)
2025-08-28 16:57:07 +02:00

9 lines
170 B
JSON

{
"extends": "../../../tsconfig.shared",
"compilerOptions": {
"allowJs": true,
"emitDeclarationOnly": false,
"noEmit": true
},
"include": ["./src"]
}