uppy/packages/@uppy/drop-target/tsconfig.build.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

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