@entreprise-os/vitest-config 2.4.84 → 2.4.86
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.
- package/package.json +1 -1
- package/tsdown-externals.ts +10 -0
package/package.json
CHANGED
package/tsdown-externals.ts
CHANGED
|
@@ -98,6 +98,16 @@ export const commonDataExternals = [
|
|
|
98
98
|
"@tanstack/react-query",
|
|
99
99
|
"sonner",
|
|
100
100
|
|
|
101
|
+
// Testing (vitest uses node:module which breaks browser builds)
|
|
102
|
+
"vitest",
|
|
103
|
+
/^@vitest\//,
|
|
104
|
+
|
|
105
|
+
// tRPC (complex re-exports)
|
|
106
|
+
/^@trpc\//,
|
|
107
|
+
|
|
108
|
+
// Express (has CommonJS dependencies like debug that use node:module)
|
|
109
|
+
"express",
|
|
110
|
+
|
|
101
111
|
// Node.js built-ins
|
|
102
112
|
/^node:/,
|
|
103
113
|
"fs",
|