Skip to content

Instantly share code, notes, and snippets.

View noce2's full-sized avatar

Nsikan noce2

View GitHub Profile
{
"$id": "https://example.com/person.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Person",
"type": "object",
"properties": {
"firstName": {
"type": "string",
"description": "The person's first name."
},
@noce2
noce2 / launch.json
Created December 3, 2021 12:03
Orta Jest Extension VsCode Setup with NVM
{
"configurations": [
{
"type": "node",
"name": "vscode-jest-tests",
"request": "launch",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true,
"program": "~/.nvm/versions/node/v12.22.6/bin/yarn",