@solidjs/vite-plugin 3.0.0-next.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,15 @@
1
+ // Ambient declarations for the `server-only` / `client-only` boundary
2
+ // markers claimed by @solidjs/vite-plugin. Reference from an env.d.ts:
3
+ // /// <reference types="@solidjs/vite-plugin/boundary-modules" />
4
+
5
+ /**
6
+ * Import `server-only` to ensure this module is never bundled for the
7
+ * client. Importing it in a client-bundled module fails the build.
8
+ */
9
+ declare module "server-only" {}
10
+
11
+ /**
12
+ * Import `client-only` to ensure this module is never bundled for the
13
+ * server. Importing it in a server-bundled module fails the build.
14
+ */
15
+ declare module "client-only" {}