Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrupted declarations when re-exporting nested modules #415

Open
3 tasks done
Danielku15 opened this issue Feb 21, 2025 · 2 comments
Open
3 tasks done

Corrupted declarations when re-exporting nested modules #415

Danielku15 opened this issue Feb 21, 2025 · 2 comments
Labels
enhancement New feature or request

Comments

@Danielku15
Copy link

Danielku15 commented Feb 21, 2025

Describe the bug

I am trying to re-export the types from my individual modules on the top level bundle module. This works fine for typescript when importing the namespaces and types.

But the DTS generated by this plugin via rollupTypes get corrupted on subsequent builds.

Reproduction

https://stackblitz.com/edit/vitejs-vite-zqiicdze

Steps to reproduce

  • npm run build
  • Inspect dist/index.d.ts which contains a proper namespace and exports for the re-rexported module:
declare class Class1 {
}

export declare namespace module {
    export {
        test1,
        Class1
    }
}

export declare function test(): void;

declare function test1(): void;

export { }
  • run again npm run build
  • Inspect dist/index.d.ts again and notice the corrupted declaration
export declare namespace module {
        {
        test1,
        Class1
    }
}

export declare function test(): void;

export { }
  • delete the dist folder and run npm run build again
  • Notice again the proper definitions.

System Info

System:
    OS: Linux 5.0 undefined
    CPU: (8) x64 Intel(R) Core(TM) i9-9880H CPU @ 2.30GHz
    Memory: 0 Bytes / 0 Bytes
    Shell: 1.0 - /bin/jsh
  Binaries:
    Node: 18.20.3 - /usr/local/bin/node
    Yarn: 1.22.19 - /usr/local/bin/yarn
    npm: 10.2.3 - /usr/local/bin/npm
    pnpm: 8.15.6 - /usr/local/bin/pnpm
  npmPackages:
    vite-plugin-dts: ^4.5.0 => 4.5.0

Validations

@qmhc qmhc added bug Something isn't working enhancement New feature or request and removed bug Something isn't working labels Mar 3, 2025
@qmhc
Copy link
Owner

qmhc commented Mar 3, 2025

You should empty dist before each build, because rollupTypes base on the files in output dir.

@Danielku15
Copy link
Author

This defies the whole purpose of incremental builds and caching. Always doing full re-builds to get non-broken outputs is not really a feasable solution to this problem.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants