{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "Rspack Plugin Configuration",
  "description": "Defines options for Rspack plugin execution.",
  "type": "object",

  "additionalProperties": false,

  "properties": {
    "$schema": {
      "description": "Part of the JSON Schema standard, this optional keyword declares the URL of the schema that the file conforms to. Editors may download the schema and use it to perform syntax highlighting.",
      "type": "string"
    },

    "devConfigurationPath": {
      "description": "Specifies a relative path to the Rspack dev configuration, which is used in \"serve\" mode. The default value is \"./rspack.dev.config.js\".",
      "type": "string"
    },

    "configurationPath": {
      "description": "Specifies a relative path to the Rspack configuration. The default value is \"./rspack.config.js\".",
      "type": "string"
    }
  }
}
