-
Notifications
You must be signed in to change notification settings - Fork 2
/
rush.json
62 lines (55 loc) · 1.56 KB
/
rush.json
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush.schema.json",
"rushVersion": "5.56.0",
"pnpmVersion": "6.22.2",
"pnpmOptions": {
"strictPeerDependencies": true,
"useWorkspaces": true
},
"nodeSupportedVersionRange": ">=12.13.0 <13.0.0 || >=14.15.0 <15.0.0 || >=16.13.0 <17.0.0",
"ensureConsistentVersions": true,
"projectFolderMinDepth": 1,
"projectFolderMaxDepth": 3,
"approvedPackagesPolicy": {
"reviewCategories": ["apps", "libs", "scripts", "tools"],
"ignoredNpmScopes": ["@types"]
},
"projects": [
{
"packageName": "@myscope/generator",
"projectFolder": "scripts/generator",
"reviewCategory": "scripts",
"shouldPublish": false
},
{
"packageName": "@myscope/monorepo",
"projectFolder": "scripts/monorepo",
"reviewCategory": "scripts",
"shouldPublish": false
},
{
"packageName": "@myscope/scripts-shared",
"projectFolder": "scripts/scripts-shared",
"reviewCategory": "scripts",
"shouldPublish": false
},
{
"packageName": "@myscope/eslint-config",
"projectFolder": "tools/eslint/config",
"reviewCategory": "tools",
"shouldPublish": false
},
{
"packageName": "@myscope/prettier-config",
"projectFolder": "tools/prettier/config",
"reviewCategory": "tools",
"shouldPublish": false
},
{
"packageName": "@myscope/typescript-config",
"projectFolder": "tools/typescript/config",
"reviewCategory": "tools",
"shouldPublish": false
}
]
}