DEV Community

Discussion on: Working with GeoJSON πŸ—ΊοΈ and VS Code

Collapse
 
amargill profile image
Amar Gill

Great article thanks for sharing. I also had to add a file association to get this working:

      "json.schemas": [
        {
          "fileMatch": [
            ".geojson"
          ],
          "url": "http://json.schemastore.org/geojson"
        }
      ],
      "files.associations": {
        "*.geojson": "json"
      }
Enter fullscreen mode Exit fullscreen mode