error TS1391: The `bundledPackageName` option must be provided when using outFile and node module resolution with declaration emit.


!!! error TS1391: The `bundledPackageName` option must be provided when using outFile and node module resolution with declaration emit.
==== tests/cases/conformance/declarationEmit/index.ts (0 errors) ====
    export * from "./nested";
    
==== tests/cases/conformance/declarationEmit/nested/base.ts (0 errors) ====
    import { B } from "./shared";
    
    export function f() {
        return new B();
    }
    
==== tests/cases/conformance/declarationEmit/nested/derived.ts (0 errors) ====
    import { f } from "./base";
    
    export function g() {
        return f();
    }
    
==== tests/cases/conformance/declarationEmit/nested/index.ts (0 errors) ====
    export * from "./base";
    export * from "./derived";
    export * from "./shared";
    
==== tests/cases/conformance/declarationEmit/nested/shared.ts (0 errors) ====
    export class B {}
    