platform/packages/platform-rig/profiles/ui/config/rush-project.json
Andrey Sobolev 4bdd95b413
Allow to cache rush format action (#3878)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2023-10-24 17:10:04 +07:00

33 lines
690 B
JSON

{
"incrementalBuildIgnoredGlobs": [
"temp/**",
"dist_cache/**",
"coverage/**",
"**/*.svelte",
".build/**"
],
"disableBuildCacheForProject": false,
"operationSettings": [
{
"operationName": "build",
"outputFolderNames": ["lib", "dist_cache"]
},
{
"operationName": "test",
"outputFolderNames": ["coverage"]
},
{
"operationName": "build:watch",
"outputFolderNames": ["lib", "dist_cache"]
},
{
"operationName": "format",
"outputFolderNames": [".rush/temp/.format"]
},
{
"operationName": "svelte-check",
"outputFolderNames": [".rush/temp/.svelte-check"]
}
]
}