forked from t3-oss/create-t3-turbo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.npmrc
25 lines (20 loc) · 823 Bytes
/
.npmrc
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
# Expo doesn't play nice with pnpm by default.
# The symbolic links of pnpm break the rules of Expo monorepos.
# @link https://docs.expo.dev/guides/monorepos/#common-issues
node-linker=hoisted
# In order to cache Prisma correctly
public-hoist-pattern[]=*prisma*
# FIXME: @prisma/client is required by the @acme/auth,
# but we don't want it installed there since it's already
# installed in the @acme/db package
strict-peer-dependencies=false
# Prevent pnpm from adding the "workspace:"" prefix to local
# packages as it causes issues with manypkg
# @link https://pnpm.io/npmrc#prefer-workspace-packages
save-workspace-protocol=false
prefer-workspace-packages=true
engine-strict=true
# required for storybook
# @link https://turbo.build/repo/docs/handbook/tools/storybook
auto-install-peers=true
legacy-peer-deps=true