Konstantin Barabanov

Results 56 comments of Konstantin Barabanov

@privatenumber will you fix it? It's horrible, I've got intersection with `window._` (lodash)! Generated minified code (by `ESBuildMinifyPlugin` for `{ children, ...props }` expression) ```js var _ = (r,p)=>{ var...

I've got another problem with `format: 'iife'` - it breaks Webpack Module Federation :D https://github.com/privatenumber/esbuild-loader/issues/258

@NickBolles it can't be used in nuxt plugins, only in setup function And I don't like idea that we put all of our utils in context object Actually if I...

Hi @pi0 `vue 2 composition-api` has the same api as `vue 3`, so I suggested to add `composition-api` support for fast migrate to `vue 3` I didn't think that it's...

@pi0 how will it look like with `nuxt3`?

I think it would be nice if we had utility type `ParsedJson` ```ts type User = { name: string, parent: User | null, sayHello: () => string, friends: Map, birthDate:...

My decision is using [flat](https://www.npmjs.com/package/flat) library: ```javascript import flat from 'flat'; const data = [{ foo: { bar: 'Bar' } }]; const workbook = new Excel.Workbook(); const worksheet = workbook.addWorksheet('FooBar');...

@xaksis do you need help? I think we could migrate to vue 3 without any problems

You are absolutely right, we should generate `` tag in root of `` I think you should inject your `config.js` using `html-webpack-plugin` mechanism with custom injecting. Smth like this: https://github.com/jantimon/html-webpack-plugin/tree/main/examples/custom-insertion-position...