Abhishek Shende

Results 21 comments of Abhishek Shende

This is an interesting use case. Looks like tsc does not support configuration of transformers using tsconfig, which is why rollup plugin only accepts that using js api. A similar...

👋 @talentlessguy This sounds like a great idea and as it turns out `klap` already has a JS api. It is largely undocumented though, since the primary use for klap...

👋 @marcuslindblom, Are import assertions ready in babel? I tried adding the `@babel/plugin-syntax-import-assertions` but it still errors out with invalid syntax. I assume there needs to be a `@babel/plugin-transform-import-assertions` for...

These options enable us to produce minimum possible compiled code. But I agree, there should be some way to override the defaults.

Let's add comparison section in readme. I'll keep this open in case someone gets there before me.

@tunnckoCore it seems `microbundle` moved away from `buble`. Am I missing something?

I did a quick comparison between `klap`, `microbundle` and `tsdx`. Here are notable differences: ## :angel: Comparison with `microbundle` and `tsdx` | Feature | klap | microbundle | tsdx |...

Build constants are essentially constant variables that are pre-defined. Similar to process.env.NODE_ENV, but more granular. For example, you can define a constant called `DEBUG = true` and use DEBUG in...

This seems a very good idea. I will try to get around this when I get a chance. For starters, we use [`servor`](https://github.com/lukejacksonn/servor) from @lukejacksonn as zero dependency hot reloading...

Hi @Mikecoon, this repository mostly supports CRA 1.x applications. I have it around for some of my legacy applications. If you are using CRA 2.x, this plugin won't work. I...