uppy/packages/@uppy/drop-target/tsconfig.json
Artur Paikin df11d2bc83
@uppy/drop-target: refactor to TypeScript (#4863)
* 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>
2024-01-26 14:50:19 +07:00

21 lines
476 B
JSON

{
"extends": "../../../tsconfig.shared",
"compilerOptions": {
"emitDeclarationOnly": false,
"noEmit": true,
"paths": {
"@uppy/utils/lib/*": ["../utils/src/*"],
"@uppy/core": ["../core/src/index.js"],
"@uppy/core/lib/*": ["../core/src/*"],
},
},
"include": ["./package.json", "./src/**/*.*"],
"references": [
{
"path": "../utils/tsconfig.build.json",
},
{
"path": "../core/tsconfig.build.json",
},
],
}