forked from safe-global/safe-wallet-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.yarnrc.yml
More file actions
29 lines (25 loc) · 739 Bytes
/
.yarnrc.yml
File metadata and controls
29 lines (25 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
compressionLevel: mixed
enableGlobalCache: true
nodeLinker: node-modules
enableScripts: false
packageExtensions:
# fixing https://github.com/vercel/next.js/issues/38939
eslint-config-next@*:
dependencies:
next: '*'
# the following changes are necessary because tsc was loading
# the wrong version of @types/react (it was taking 18 from main
# instead of 19 from the web package) & linting was failing
# START FIX FOR TSC
'@cowprotocol/widget-react@*':
peerDependencies:
react: '^19.0.0'
'@types/react': '^19.0.0'
react-papaparse@*:
peerDependencies:
react: '^19.0.0'
'@storybook/core@*':
dependencies:
react: '^19.0.0'
'@types/react': '^19.0.0'
# END FIX FOR TSC