vite-plugin-solid icon indicating copy to clipboard operation
vite-plugin-solid copied to clipboard

A simple integration to run solid-js with vite

Results 50 vite-plugin-solid issues
Sort by recently updated
recently updated
newest added

Trying to import and use any function from [MSW](https://github.com/mswjs/msw) (specifically, `msw/node`) when running vitest prints this error: ``` FAIL src/testfile.test.ts [ src/testfile.test.ts ] Error: No known conditions for "./node" specifier...

While building the ssr bundle with `ssr.target = "webworker"`, it looks like the default web builds of vite is being bundled. I have these in my vite config but it...

### Describe the bug If I create a `.tsx` file with this content ```tsx function A() { return 1 } namespace A { export const a = 1; } console.log(A);...

Consider the case: some tool need to load module with Solid JSX. I hit this problem two times: in Vite plugin for prerendering certain pages, and now with css-in-js plugin,...

When running `vitest` 0.34.2, if I have `vite-plugin-solid` registered as a plugin, the following warning is logged: > Vitest "deps.registerNodeLoader" is deprecated. If you rely on aliases inside external packages,...

I have a project that uses vitest with happy-dom in conjunction with vite-plugin-solid. Switching from 2.7.0 of vite-plugin-solid to 2.7.1 breaks my unit tests. Here's a relevant part of the...

When updating `vite-plugin-solid` from version `2.8.0` to version `2.8.2` when I export a component as default I get the following warning: ``` The exported identifier "App" is not declared in...

Since updating to `vite-plugin-solid` `v2.8.3` (& still on `v2.9.0`), all my unit tests have been failing in Vitest with this error: ``` [error] TypeError: Cannot read properties of undefined (reading...

- Option `typescript` is unused by the majority I believe - `typescript` parsing can be bypassed by `parserOpts.plugin = ['typescript']`, you can see an example here: https://github.com/lxsmnsyc/solid-styled/blob/main/packages/vite/src/index.ts#L66-L69 - `typescript` preset...

Say you have the following bad syntax in your JSX: This is of course not correct interpolation syntax. I would expect it to be passed through verbatim into the DOM,...