-
Notifications
You must be signed in to change notification settings - Fork 0
/
rush.json
51 lines (51 loc) · 1.4 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
{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush.schema.json",
"rushVersion": "5.100.1",
"yarnVersion": "1.9.4",
"nodeSupportedVersionRange": ">=14.15.0 <15.0.0 || >=16.13.0 <17.0.0 || >=18.15.0 <19.0.0",
"projectFolderMinDepth": 2,
"projectFolderMaxDepth": 3,
"approvedPackagesPolicy": {
"reviewCategories": ["packages", "tools"],
"ignoredNpmScopes": ["@types"]
},
"gitPolicy": {},
"repository": {
"url": "https://github.com/michael-mir/rushjs-monorepo-example",
"defaultBranch": "master"
},
"ensureConsistentVersions": true,
"eventHooks": {
"preRushInstall": [],
"postRushInstall": [],
"preRushBuild": [],
"postRushBuild": []
},
"variants": [],
"projects": [
{
"packageName": "@michael-mir/packages-components",
"projectFolder": "packages/components",
"reviewCategory": "packages",
"shouldPublish": true
},
{
"packageName": "@michael-mir/tools-eslint",
"projectFolder": "tools/eslint",
"reviewCategory": "tools",
"shouldPublish": true
},
{
"packageName": "@michael-mir/tools-prettier",
"projectFolder": "tools/prettier",
"reviewCategory": "tools",
"shouldPublish": true
},
{
"packageName": "@michael-mir/tools-tsconfig",
"projectFolder": "tools/tsconfig",
"reviewCategory": "tools",
"shouldPublish": true
}
]
}