{
    "version": 2,
    "outputCapture": "direct-nodejs",
    "title": "Node Application Build Target",
    "description": "Node application build target options for Build Facade",
    "type": "object",
    "properties": {
        "template": {
            "type": "string",
            "description": "The SAM template."
        },
        "tsConfig": {
            "type": "string",
            "description": "The name of the Typescript configuration file."
        },
        "outputPath": {
            "type": "string",
            "description": "The output path of the generated files."
        },
        "watch": {
            "type": "boolean",
            "description": "Run build when files change.",
            "default": false
        },
        "poll": {
            "type": "number",
            "description": "Frequency of file watcher in ms."
        },
        "sourceMap": {
            "type": "boolean",
            "description": "Produce source maps.",
            "default": true
        },
        "progress": {
            "type": "boolean",
            "description": "Log progress to the console while building.",
            "default": false
        },
        "assets": {
            "type": "array",
            "description": "List of static application assets.",
            "default": [],
            "items": {
                "$ref": "#/definitions/assetPattern"
            }
        },
        "externalDependencies": {
            "oneOf": [
                {
                    "type": "string",
                    "enum": ["none", "all"]
                },
                {
                    "type": "array",
                    "items": {
                        "type": "string"
                    }
                }
            ],
            "description": "Dependencies to keep external to the bundle. (\"all\" (default), \"none\", or an array of module names)",
            "default": "none"
        },
        "statsJson": {
            "type": "boolean",
            "description": "Generates a 'stats.json' file which can be analyzed using tools such as: #webpack-bundle-analyzer' or https: //webpack.github.io/analyse.",
            "default": false
        },
        "verbose": {
            "type": "boolean",
            "description": "Emits verbose output",
            "default": false
        },
        "extractLicenses": {
            "type": "boolean",
            "description": "Extract all licenses in a separate file, in the case of production builds only.",
            "default": false
        },
        "optimization": {
            "type": "boolean",
            "description": "Defines the optimization level of the build.",
            "default": false
        },
        "showCircularDependencies": {
            "type": "boolean",
            "description": "Show circular dependency warnings on builds.",
            "default": true
        },
        "maxWorkers": {
            "type": "number",
            "description": "Number of workers to use for type checking. (defaults to # of CPUS - 2)"
        },
        "memoryLimit": {
            "type": "number",
            "description": "Memory limit for type checking service process in MB. (defaults to 2048)"
        },
        "fileReplacements": {
            "description": "Replace files with other files in the build.",
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "replace": {
                        "type": "string"
                    },
                    "with": {
                        "type": "string"
                    }
                },
                "additionalProperties": false,
                "required": ["replace", "with"]
            },
            "default": []
        },
        "webpackConfig": {
            "type": "string",
            "description": "Path to a function which takes a webpack config, context and returns the resulting webpack config"
        },
        "buildLibsFromSource": {
            "type": "boolean",
            "description": "Read buildable libraries from source instead of building them separately.",
            "default": true
        },
        "generatePackageJson": {
            "type": "boolean",
            "description": "Generates a package.json file with the project's node_module dependencies populated for installing in a container. If a package.json exists in the project's directory, it will be reused with dependencies populated.",
            "default": false
        },
        "buildPerFunction": {
            "type": "boolean",
            "description": "Runs a new webpack build for each function, rather than running one build for all functions.",
            "default": false
        }
    },
    "required": ["tsConfig", "template"],
    "definitions": {
        "assetPattern": {
            "oneOf": [
                {
                    "type": "object",
                    "properties": {
                        "glob": {
                            "type": "string",
                            "description": "The pattern to match."
                        },
                        "input": {
                            "type": "string",
                            "description": "The input directory path in which to apply 'glob'. Defaults to the project root."
                        },
                        "ignore": {
                            "description": "An array of globs to ignore.",
                            "type": "array",
                            "items": {
                                "type": "string"
                            }
                        },
                        "output": {
                            "type": "string",
                            "description": "Absolute path within the output."
                        }
                    },
                    "additionalProperties": false,
                    "required": ["glob", "input", "output"]
                },
                {
                    "type": "string"
                }
            ]
        }
    }
}
