mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-22 21:50:34 +03:00
ef4d632047
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
19 lines
738 B
JSON
19 lines
738 B
JSON
// The "rig.json" file directs tools to look for their config files in an external package.
|
|
// Documentation for this system: https://www.npmjs.com/package/@rushstack/rig-package
|
|
{
|
|
"$schema": "https://developer.microsoft.com/json-schemas/rig-package/rig.schema.json",
|
|
|
|
/**
|
|
* (Required) The name of the rig package to inherit from.
|
|
* It should be an NPM package name with the "-rig" suffix.
|
|
*/
|
|
"rigPackageName": "@anticrm/platform-rig"
|
|
|
|
/**
|
|
* (Optional) Selects a config profile from the rig package. The name must consist of
|
|
* lowercase alphanumeric words separated by hyphens, for example "sample-profile".
|
|
* If omitted, then the "default" profile will be used."
|
|
*/
|
|
// "rigProfile": "your-profile-name"
|
|
}
|