-
Notifications
You must be signed in to change notification settings - Fork 46
/
rush.json
39 lines (39 loc) · 1.1 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
{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush.schema.json",
"rushVersion": "5.121.0",
"pnpmVersion": "8.15.7",
"ensureConsistentVersions": true,
"pnpmOptions": {
"strictPeerDependencies": true
},
"nodeSupportedVersionRange": ">=18.0.0",
"suppressNodeLtsWarning": true,
"projectFolderMinDepth": 1,
"projectFolderMaxDepth": 5,
"gitPolicy": {},
"repository": {
"defaultBranch": "main",
"url": "https://github.com/Azure/azure-openapi-validator.git"
},
"projects": [
{
"packageName": "@microsoft.azure/openapi-validator-core",
"projectFolder": "packages/azure-openapi-validator/core",
"shouldPublish": true
},
{
"packageName": "@microsoft.azure/openapi-validator",
"projectFolder": "packages/azure-openapi-validator/autorest",
"shouldPublish": true
},
{
"packageName": "@microsoft.azure/openapi-validator-rulesets",
"projectFolder": "packages/rulesets",
"shouldPublish": true
},
{
"packageName": "openapi-validator-regression",
"projectFolder": "regression"
}
]
}