Skip to content

Instantly share code, notes, and snippets.

View liorocks's full-sized avatar

Lio liorocks

View GitHub Profile
@liorocks
liorocks / jsconfig.md
Last active May 25, 2023 13:47
jsconfig.json

jsconfig.json

{
  "compilerOptions": {
    "baseUrl": "./src",
    "target": "ES6",
    "jsx": "preserve",
    "allowSyntheticDefaultImports": true
  },
 "exclude": ["build", "node_modules"]
@liorocks
liorocks / user-settings.md
Last active November 18, 2017 11:50
VSCode User Settings
{
  "workbench.statusBar.visible": false,
  "workbench.startupEditor": "none",
  "workbench.iconTheme": "material-icon-theme",
  "workbench.colorTheme": "Atom One Dark",
  "editor.fontFamily": "'Fira Code', Menlo, Monaco, 'Courier New', monospace",
  "editor.fontSize": 14,
  "editor.fontLigatures": true,
 "editor.formatOnSave": true,