Babel to convert ECMAScript 2015+ code into a backwards compatible version of JavaScript in current and older browsers or environments.
Other compiler
TypeScript
class T { | |
constructor(endTime, roomId) { | |
this.endTime = endTime; | |
this.roomId = roomId; | |
} | |
} | |
class PriorityQueueTest { | |
constructor(comparator = (a, b) => a - b) { |
{"name":"p2","settings":"{\"settings\":\"{\\n /**\\n * Better Defaults\\n **/\\n \\\"editor.copyWithSyntaxHighlighting\\\": false,\\n \\\"diffEditor.ignoreTrimWhitespace\\\": false,\\n \\\"editor.emptySelectionClipboard\\\": false,\\n \\\"workbench.editor.enablePreview\\\": false,\\n \\\"window.newWindowDimensions\\\": \\\"inherit\\\",\\n \\\"editor.multiCursorModifier\\\": \\\"ctrlCmd\\\",\\n \\\"files.trimTrailingWhitespace\\\": true,\\n \\\"diffEditor.renderSideBySide\\\": false,\\n \\\"editor.snippetSuggestions\\\": \\\"none\\\",\\n \\\"editor.detectIndentation\\\": false,\\n \\\"files.insertFinalNewline\\\": true,\\n \\\"files.trimFinalNewlines\\\": true,\\n\\n /**\\n * Hide Everything\\n */\\n //\\\"workbench.activityBar.location\\\": \\\"hidden\\\",\\n \\\"workbench.sideBar.location\\\": \\\"right\\\", //here\\n \\\"editor.minimap.enabled\\\": false,\\n \\\"editor.lineNumbers\\\": \\\"off\\\",\\n \\\"editor.guides.indentation\\\": false,\\n\\n /**\\n * Silence The Noise\\n |
colors.sh | |
# This is the custom theme template for gitprompt.sh | |
# These are the defaults from the "Default" theme | |
# You just need to override what you want to have changed | |
function prompt_callback { | |
gp_set_window_title ${PWD} | |
} | |
override_git_prompt_colors() { | |
GIT_PROMPT_THEME_NAME="Custom" | |
# Time12a="\$(date +%H:%M)" |
# aliases | |
alias c="clear" | |
export NODE_ENV=local | |
alias dnpm='docker-compose up -d scripts && docker-compose exec scripts npm | |
run ts:build && docker-compose exec scripts npm ' | |
#export NODE_PATH=$(npm root -g) | |
# Git |