18 lines
667 B
Plaintext
18 lines
667 B
Plaintext
# 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 casues issues with manypkg
|
|
# @link https://pnpm.io/npmrc#prefer-workspace-packages
|
|
save-workspace-protocol=false
|
|
prefer-workspace-packages=true |