[Question] Support config file like tsup.config.js
See original GitHub issueHi Egoist, thank you for the great lib! But I wonder how about this?
tsup.config.js
module.export = {
target: 'es2021',
sourcemap: true,
format: ['esm','cjs']
....
}
Issue Analytics
- State:
- Created 2 years ago
- Comments:7 (4 by maintainers)
Top Results From Across the Web
Configuration for using tsup #487 - fastify/fastify-cli - GitHub
Prerequisites I have written a descriptive issue title I have searched existing issues to ensure the feature has not already been requestedĀ ...
Read more >A fool-proof tsup config for a React component library
Hi, I maintain the VulcanJS framework and I have similar needs, checkout our current solution using Tsup: github.com/VulcanJS/vulcan-npm ThisĀ ...
Read more >Creating a Modern TypeScript/JavaScript Library With tsup
It's a tool that bundles your TypeScript library with no config needed. It can bundle any file that is internally supported by the...
Read more >How to bundle a tree-shakable typescript library with tsup and ...
Similar to Parcel , tsup is a zero-config library(in case you don't want it) based on esbuild. Parcel is based on Rust based...
Read more >Bundling packages in a Monorepo - Turborepo
tsup outputs files to the dist directory by default, so you should: ... Fortunately, we can use dependsOn to easily configure this.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
you can already use
tsup.config.js
, itās just not documented.sounds great.