zocky
zocky
As a stopgap, I've been using a big .png file with a grid in an image layer for this, and it's sort-of OK. It'd be much easier if the image...
> The lack of these official packages is also what's holding us from considering Marko more seriously. Same here. We're considering frameworks for UI development, and Marko looks like a...
IMO, the URL shouldn't update automatically. It's not needed for remembering the state, though it may be useful for sending links, e.g. in an email. You could have a button...
I have this strange behavior: - `project/node_modules/dependency` breaks tsx in dependency - `project/node_modules/` doesn't break it, **but**, if the dependency is located within a `node_modules` directory, then it breaks again.
This is caused explicitly by these [two](https://github.com/esbuild-kit/cjs-loader/blob/develop/src/index.ts#L139) [lines](https://github.com/esbuild-kit/esm-loader/blob/develop/src/loaders.ts#L123) in cjs-loader and esm-loader. If you disable those lines, tsx works as expected, at least for my use case.
No, it's the exact same issue. Any file that has `node_modules` in its real path will ignore tsconfig, because esm-loader and cjs-loader will refuse to apply tsconfig.json to it.
The difference in behavior when the parent path contains the string `/node_modules/` definitely seems to be caused by those two lines, so solving this will solve my issue. First, my...
The website generator imports jsx files which need to be transpiled before import, so using tsx at runtime is already a part of the project. I realize that there must...
I now fixed the demo so it loads the correct jQuery, but it's still not a very good demo, since it only shows you the currently existing files, i.e. very...