15 lines
376 B
JSON
Executable File
15 lines
376 B
JSON
Executable File
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"title": "Webpack Builder.",
|
|
"description": "Webpack Builder schema for Architect.",
|
|
"type": "object",
|
|
"properties": {
|
|
"webpackConfig": {
|
|
"type": "string",
|
|
"description": "The path to the Webpack configuration file."
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"required": ["webpackConfig"]
|
|
}
|