uppy/packages/@uppy/thumbnail-generator/tsconfig.json
Merlijn Vos d6ae3b4bad
@uppy/thumbnail-generator: migrate to TS (#4978)
Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
2024-03-07 15:24:17 +01: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",
},
],
}