{
    "$schema": "http://json-schema.org/schema",
    "$id": "SchematicsNestJSConfig",
    "title": "NestJS basic config module",
    "type": "object",
    "properties": {
      "directory": {
        "type": "string",
        "description": "The path of the existing project directory.",
        "default": ".",
        "x-prompt": "Where is the NestJS project located?"
      },
      "envVar": {
        "type": "string",
        "description": "Name of the env var that determines the environment",
        "default": "NODE_ENV",
        "x-prompt": "What is the name of the env var that determines the environment where the app will be running?"
      }
    },
    "required": ["directory", "envVar"]
  }
