Skip to content

Commit

Permalink
disable optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
mydea committed Aug 29, 2024
1 parent 6b0fc8e commit 01e99f2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"cross-env": "^7.0.3",
"crypto": "^1.0.1",
"esbuild": "0.19.12",
"eslint": "^8.38.0",
"eslint-import-resolver-typescript": "^3.6.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,9 @@ export default defineConfig({
ignoreConfigErrors: true,
}),
],

// This leads to problems because it includes dependencies from parent node_modules folders
// which include stuff that breaks here
// so we just disable it for this test
optimizeDeps: { noDiscovery: true },
});

0 comments on commit 01e99f2

Please sign in to comment.