mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-23 18:29:09 +00:00
* port progress-bar * port fileinput to ts * review fixes * revert changes in `@uppy/file-input` * Apply suggestions from code review Co-authored-by: Antoine du Hamel <antoine@transloadit.com> * Apply suggestions from code review Co-authored-by: Antoine du Hamel <antoine@transloadit.com> * fix * prettier * Update packages/@uppy/progress-bar/src/ProgressBar.tsx Co-authored-by: Merlijn Vos <merlijn@soverin.net> --------- Co-authored-by: Merlijn Vos <merlijn@soverin.net> Co-authored-by: Antoine du Hamel <antoine@transloadit.com> Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
25 lines
568 B
JSON
25 lines
568 B
JSON
{
|
|
"extends": "../../../tsconfig.shared",
|
|
"compilerOptions": {
|
|
"noImplicitAny": false,
|
|
"outDir": "./lib",
|
|
"paths": {
|
|
"@uppy/utils/lib/*": ["../utils/src/*"],
|
|
"@uppy/core": ["../core/src/index.js"],
|
|
"@uppy/core/lib/*": ["../core/src/*"]
|
|
},
|
|
"resolveJsonModule": false,
|
|
"rootDir": "./src",
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["./src/**/*.*"],
|
|
"exclude": ["./src/**/*.test.ts"],
|
|
"references": [
|
|
{
|
|
"path": "../utils/tsconfig.build.json"
|
|
},
|
|
{
|
|
"path": "../core/tsconfig.build.json"
|
|
}
|
|
]
|
|
}
|