uppy/packages/@uppy/webcam/tsconfig.json
Antoine du Hamel aefb32533c
@uppy/webcam: refactor to TypeScript (#4870)
Co-authored-by: Merlijn Vos <merlijn@soverin.net>
2024-03-11 15:30:03 +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",
},
],
}