#Multiple Entrypoints with Nested Directories
1 messages · Page 1 of 1 (latest)
1 messages · Page 1 of 1 (latest)
Here is my project structure:
|-src/
|-|-lib/
|-|-|-LibComponent1.ts
|-|-|-LibComponent2.ts
|-|-index.ts
|-|-page2.ts
Is there a way for bun.build to build this project into:
|-dist/
|-|-lib/
|-|-|-libComponent1.js
|-|-|-libComponent2.js
|-|-index.js
|-|-page2.js