forked from universal-ember/table
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.npmrc
More file actions
43 lines (37 loc) · 1.11 KB
/
.npmrc
File metadata and controls
43 lines (37 loc) · 1.11 KB
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
35
36
37
38
39
40
41
42
43
registry = https://registry.npmjs.org
ignore-dep-scripts=true
peers-suffix-max-length=40
virtual-store-dir-max-length=40
####################
# 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)
dedupe-injected-deps=true
dedupe-peer-dependents=true
inject-workspace-packages=true
sync-injected-deps-after-scripts[]=build
; 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
################
# Simulate installing from npm
################
inject-workspace-packages=true
sync-injected-deps-after-scripts[]=build
################
# 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