mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-18 17:16:00 +00:00
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)
10 lines
205 B
JSON
10 lines
205 B
JSON
{
|
|
"extends": "../../../tsconfig.shared",
|
|
"compilerOptions": {
|
|
"outDir": "./lib",
|
|
"rootDir": "./src",
|
|
"allowJs": true
|
|
},
|
|
"include": ["./src"],
|
|
"exclude": ["./src/**/*.test.{js,ts}"]
|
|
}
|