get_build_config
Generate build configurations for React with CSS modules to ensure compatibility with Chrome 37, supporting Babel, PostCSS, Webpack, or all options.
Instructions
Get recommended build configuration for React + CSS modules targeting Chrome 37
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| configType | Yes | Type of configuration to generate | 
Input Schema (JSON Schema)
{
  "properties": {
    "configType": {
      "description": "Type of configuration to generate",
      "enum": [
        "babel",
        "postcss",
        "webpack",
        "all"
      ],
      "type": "string"
    }
  },
  "required": [
    "configType"
  ],
  "type": "object"
}