14 lines
341 B
Plaintext
14 lines
341 B
Plaintext
# 启用严格模式,确保依赖版本一致
|
|
strict-peer-dependencies=false
|
|
|
|
# 配置依赖安装目录(pnpm 特有,节省磁盘空间)
|
|
store-dir=~/.pnpm-store
|
|
|
|
# 兼容 uniapp 对依赖的查找逻辑
|
|
node-linker=hoisted
|
|
|
|
# 忽略废弃依赖警告
|
|
ignore-deprecations=all
|
|
|
|
# 忽略对等依赖警告
|
|
strict-peer-dependencies=false |