Maksim Nesterenko
Maksim Nesterenko
Sorry for offtop, but I just wanted to say that one more nice thing that would be great to have is a blank line after the generated header.
In my case it was incorrectly scrolled to top after I hit the back button in browser. So this works for me (in SPA) ```js window.onpopstate = function() { setTimeout(()...
I didn't make it work from the first time, so just wanted to clarify that it's not necessary to add that script directly to HTML. It's a hack where you...
So what would be the right way of creating an npm library with a builtin web worker?
I came here to report [this issue](https://github.com/vuejs/vue-router/issues/2150) back here, but it's already reported, so I just share the original issue from vue-router then to create a link. https://github.com/vuejs/vue-router/issues/2150
Changing options to ```js getCustomTransformers: () => ({ after: [optChainTransform] }), ``` gives another error: ``` Module build failed (from ./node_modules/ts-loader/index.js): TypeError: Cannot read property 'kind' of undefined at Object.isSourceFile...
Changing import to as described [here](https://github.com/Igorbek/typescript-plugin-styled-components#forked-process-configuration): ``` getCustomTransformers: resolve('build/webpack.ts-transformers.js') ``` Gives another error ``` \typescript.js:63475:36) at visitSourceFile (C:\Users\Foo\Desktop\vue-project\node_modules\typescript\lib\typescript.js:66199:53) at saveStateAndInvoke (C:\Users\Foo\Desktop\vue-project\node_modules\typescript\lib\typescript.js:65832:27 ) at transformSourceFile (C:\Users\Foo\Desktop\vue-project\node_modules\typescript\lib\typescript.js:65815:2 7) at transformSourceFileOrBundle (C:\Users\Foo\Desktop\vue-project\node_modules\typescript\lib\typescript.js :65795:20)...
Changing `after` to `before` gives yet another error: ``` Module build failed (from ./node_modules/ts-loader/index.js): TypeError: Cannot read property 'length' of undefined at Object.firstOrUndefined (C:\Users\Foo\Desktop\vue-project\node_modules\typescript\lib\typescript.js:998 :22) at Object.startsWithUseStrict (C:\Users\Foo\Desktop\vue-project\node_modules\typescript\lib\typescript.js: 62523:33) at...
`var h = this.$createElement` isn't added in transpiled functions automatically. However in case of render I can just write `render(h)` and it works. But in other functions I have to...
@gettinToasty yes, sure, I expected this behavior, but that's not happened in my case. 🤷♂️ JSX works fine, TSX - not.