Abram Bradley

Results 13 comments of Abram Bradley

That does seem tricky. The type inference would be NICE. But I probably care more about type safety than the inference initially, which seems like more of a svelte language...

What's the issue with "barrel files"? Does it just make it harder to code-split and tree-shake? Are export aliases also discouraged? ```js // index.js export { default } from "./my-module.js"...

What if you had something like `"import/re-exports": "disallow" | "short" | "long"` `"short"` allows `export from` ```js export { default } from "mod" ``` and disallows `import export` ```js import...