treeshake is not work #1153
zhusjfaker
started this conversation in
General
Replies: 1 comment
-
Can you share a demo repo / codesandbox that I can see this happening in? We have tests for tree-shaking that are currently passing, but you could have found something new |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
c.ts
export * from './a'; // TestAComponent file
export * from './b'; // TestBComponent file
index.ts
import { TestBComponent } from './c';
snowpack will install a.ts & b.ts
treeshake is not work
Beta Was this translation helpful? Give feedback.
All reactions