mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
177d6adf38
Co-authored-by: Opender Singh <opender94@gmail.com> Co-authored-by: Opender Singh <opender.singh@konghq.com>
650 B
650 B
Insomnia Config
Design Goals
- ensure that changing the root TypeScript types will generate new config
- ensure that making a breaking change to TypeScript will cause failing tests to be updated
- run validation on the CI
Editor Integration
To get editor integration for this schema, tell your IDE about it. For example, in VS Code add the following to your .vscode/settings.json
:
{
"json.schemas": [
{
"fileMatch": [
"insomnia.config.json",
],
"url": "https://raw.githubusercontent.com/Kong/insomnia/develop/packages/insomnia-config/src/generated/schemas/insomnia.schema.json"
}
]
}