forked from NullVoxPopuli/limber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.npmrc
34 lines (29 loc) · 898 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
26
27
28
29
30
31
32
33
34
registry = https://registry.npmjs.org
ignore-scripts = true
####################
# super strict mode
####################
auto-install-peers=false
strict-peer-dependents=true
################
# Optimizations
################
# Less strict, but required for tooling to not barf on duplicate peer trees.
# (many libraries declare the same peers, which resolve to the same
# versions)
peers-suffix-max-length=40
dedupe-injected-deps=true
dedupe-peer-dependents=true
; We disable this one because it removes the whole node_modules directory entirely
; (problematic for for invoking tools (tsc, glint, etc)
; dedupe-direct-deps=true
################
# Hacks
################
public-hoist-pattern[]=ember-source
################
# Compatibility
################
# highest is what everyone is used to, but
# not ensuring folks are actually compatible with declared ranges.
resolution-mode=highest