mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-25 19:23:55 +00:00
* Convert @uppy/drop-target to Typescript * Update packages/@uppy/drop-target/src/index.ts Co-authored-by: Antoine du Hamel <antoine@transloadit.com> * Remove unused imports * Update packages/@uppy/drop-target/src/index.ts Co-authored-by: Antoine du Hamel <antoine@transloadit.com> * Update packages/@uppy/drop-target/src/index.ts Co-authored-by: Antoine du Hamel <antoine@transloadit.com> * Utilize DefinePluginOpts * Use spread ... * Add comment to DefinePluginOpts * add satisfies * prettier on tsconfig --------- Co-authored-by: Antoine du Hamel <antoine@transloadit.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"
|
|
}
|
|
]
|
|
}
|