Created
August 30, 2024 14:25
-
-
Save W-A-James/5c1330f23ad9359b8b5398695ae2c321 to your computer and use it in GitHub Desktop.
js-bson workspace
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
Show hidden characters
| { | |
| "folders": [ | |
| { | |
| "name": "bson", | |
| "path": "../drivers/js/bson" | |
| } | |
| ], | |
| "settings": { | |
| "window.title": "bson", | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": "explicit" | |
| }, | |
| "[json]": { | |
| "editor.formatOnSave": true | |
| }, | |
| "[jsonc]": { | |
| "editor.formatOnSave": true | |
| }, | |
| "[javascript]": { | |
| "editor.defaultFormatter": "vscode.typescript-language-features" | |
| }, | |
| "[typescript]": { | |
| "editor.defaultFormatter": "dbaeumer.vscode-eslint", | |
| "editor.codeActionsOnSave": { | |
| "source.organizeImports": "never" | |
| } | |
| }, | |
| "files.autoSave": "onFocusChange", | |
| "files.trimTrailingWhitespace": true, | |
| "files.trimFinalNewlines": true, | |
| "files.insertFinalNewline": true, | |
| "workbench.colorCustomizations": { | |
| "activityBar.activeBackground": "#4a9197", | |
| "activityBar.background": "#4a9197", | |
| "activityBar.foreground": "#e7e7e7", | |
| "activityBar.inactiveForeground": "#e7e7e799", | |
| "activityBarBadge.background": "#e0bfdd", | |
| "activityBarBadge.foreground": "#15202b", | |
| "commandCenter.border": "#e7e7e799", | |
| "sash.hoverBorder": "#4a9197", | |
| "statusBar.background": "#397075", | |
| "statusBar.foreground": "#e7e7e7", | |
| "statusBarItem.hoverBackground": "#4a9197", | |
| "statusBarItem.remoteBackground": "#397075", | |
| "statusBarItem.remoteForeground": "#e7e7e7", | |
| "titleBar.activeBackground": "#397075", | |
| "titleBar.activeForeground": "#e7e7e7", | |
| "titleBar.inactiveBackground": "#39707599", | |
| "titleBar.inactiveForeground": "#e7e7e799" | |
| }, | |
| "peacock.color": "#397075", | |
| "cSpell.words": [ | |
| "bsonregexp", | |
| "bsontype", | |
| "bytesify", | |
| "DBPOINTER", | |
| "dbref", | |
| "EJSON", | |
| "esmodule", | |
| "fffd", | |
| "iife", | |
| "maxkey", | |
| "MAXSIZE", | |
| "Milis", | |
| "minkey", | |
| "significand", | |
| "typeof", | |
| "xffffffffffffffffn", | |
| "xffffffffffn" | |
| ], | |
| "typescript.tsdk": "node_modules/typescript/lib" | |
| }, | |
| "launch": { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "type": "node", | |
| "request": "launch", | |
| "name": "Launch Program", | |
| "smartStep": false, | |
| "skipFiles": [], | |
| "runtimeExecutable": "<PATH TO node executable>", | |
| "program": "${workspaceFolder}/node_modules/.bin/mocha", | |
| "env": { | |
| "WEB": "false" | |
| }, | |
| "args": [ | |
| "test/node" | |
| ], | |
| "outFiles": [ | |
| "${workspaceFolder}/**/*.js" | |
| ] | |
| }, | |
| { | |
| "type": "node", | |
| "request": "attach", | |
| "name": "attach" | |
| } | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment