{{ message }}
Replies: 2 comments 2 replies
|
So a workaround is doing: import type { Bucket } from '@google-cloud/storage/build/cjs/src/bucket.d.ts'And then adding the "paths": {
"@google-cloud/storage/build/cjs/src/bucket.d.ts": ["./node_modules/@google-cloud/storage/build/cjs/src/bucket.d.ts"]
}This basically screams "fix me later". |
2 replies
Answer selected by
larssn
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

So a workaround is doing:
And then adding the
bucket.d.tstopathsin tsconfig's `compilerOptions:This basically screams "fix me later".