The following web.config update will allow you to server .json files when developing locally in Visual Studio.
<system.webServer>
<staticContent>
<mimeMap fileExtension=".json" mimeType="application/json; charset=UTF-8" />
</staticContent>
</system.webServer>