insomnia/packages/insomnia-config
2022-06-02 13:20:00 +00:00
..
src chore(deps): upgrades jest to 28 (#4783) 2022-05-17 08:18:06 -04:00
.eslintignore
.eslintrc.js
jest.config.js chore(deps): upgrades jest to 28 (#4783) 2022-05-17 08:18:06 -04:00
package-lock.json Bump app version to 2022.4.0-beta.3 and lerna package versions 2022-06-02 13:20:00 +00:00
package.json Bump app version to 2022.4.0-beta.3 and lerna package versions 2022-06-02 13:20:00 +00:00
README.md
tsconfig.build.json
tsconfig.json

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"
    }
  ]
}