$/
artifacts/
build/
docs/
lib/
packages/
samples/
src/
tests/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "name": "Ruby: Debug Current File", | |
| "type": "ruby", | |
| "request": "launch", | |
| "program": "${file}", | |
| "cwd": "${workspaceFolder}", | |
| "useBundler": true, | |
| "pathToBundler": "/usr/local/bin/bundle", | |
| "pathToRDebugIDE": "rdebug-ide", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*! | |
| * Deep merge two or more objects together. | |
| * (c) 2019 Chris Ferdinandi, MIT License, https://gomakethings.com | |
| * @param {Object} objects The objects to merge together | |
| * @returns {Object} Merged values of defaults and options | |
| */ | |
| export function deepMerge(...args: any[]) { | |
| // Setup merged object | |
| const newObj: Record<string, any> = {}; |