Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 632 Bytes

README.md

File metadata and controls

18 lines (15 loc) · 632 Bytes

JSON Schema for Cloudflare Workers Configuration

VSCode

If you're using wrangler.toml

I recommend the Even Better TOML extension. Follow the instructions here.

If you're using wrangler.json with the --experimental-json-config flag

Add the following to your User Settings file (settings.json)

"json.schemaDownload.enable": true,
"json.schemas": [
  {
    "fileMatch": ["wrangler.json"],
    "url": "https://raw.githubusercontent.com/snilan/wrangler-json-schema/main/wrangler.schema.json"
  }
],