We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A clear and concise description of what the bug is.
When doing build, even though the dts is building the .d.ts files, they are missing in the /dist folder.
dts
.d.ts
/dist
DTS Build start DTS Build start DTS Build start DTS ⚡️ Build success in 1454ms DTS dist/preview.d.ts 359.00 B DTS ⚡️ Build success in 1499ms DTS dist/vitest-plugin.d.ts 1.34 KB DTS ⚡️ Build success in 2089ms DTS dist/vitest-setup.d.ts 403.00 B DTS dist/index.d.ts 703.00 B DTS dist/matcher.d.ts 186.00 B
The problem is that the commonConfig set clean: true, which causes the last DTS build wipe out the previous artifacts.
commonConfig
clean: true
Setting it to clean: false would fix the issue.
clean: false
Maybe this is a bug should be fixed in tsup?
tsup
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
A clear and concise description of what the bug is.
Steps to reproduce the behavior
When doing build, even though the
dts
is building the.d.ts
files, they are missing in the/dist
folder.The problem is that the
commonConfig
setclean: true
,which causes the last DTS build wipe out the previous artifacts.
Setting it to
clean: false
would fix the issue.Maybe this is a bug should be fixed in
tsup
?The text was updated successfully, but these errors were encountered: