uppy/packages/@uppy/progress-bar/tsconfig.build.json
Mikael Finstad c9606092f0
@uppy/progress-bar: refactor to TypeScript (#4921)
* 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>
2024-02-28 17:30:46 +08:00

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"
}
]
}