user/settings/development/javascript.nix (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 | { config , pkgs , ... }: let nodejs = pkgs.nodejs; in { home.packages = (with pkgs; [ nodejs bun pnpm-shell-completion bunyan-rs ]) ++ (with pkgs.nodePackages; [ node2nix nodemon javascript-typescript-langserver typescript-language-server eslint_d typescript pnpm npm-merge-driver ]); home.sessionVariables = { NO_UPDATE_NOTIFIER = "1"; # stop npm update-notifier }; programs.emacs.extraPackages = epkgs: (with epkgs; [ add-node-modules-path js2-mode rjsx-mode tide typescript-mode ]); home.shellAliases = { ava = "bunx ava"; avt = "bunx ava --tap"; avat = "bunx ava --tap"; avaw = "bunx ava --watch"; avaf = "bunx ava --fail-fast"; avafw = "bunx ava --fail-fast --watch"; avawf = "bunx ava --fail-fast --watch"; pino = "bunyan"; mocha = "bunx mocha"; standard = "bunx standard"; tsc = "bunx tsc"; tslint = "bunx tslint"; tsnode = "bunx ts-node"; p = "pnpm"; pi = "pnpm install --filter=."; pit = "pnpm install-test --filter=."; pl = "pnpm ls"; pr = "pnpm run"; pb = "pnpm run build"; prb = "pnpm run build"; pbd = "pnpm multi run build --filter={.}..."; pmi = "pnpm multi install"; pmx = "pnpm multi exec "; # expand command aliases pmr = "pnpm multi run"; pa = "pnpm add"; pad = "pnpm add --save-dev"; pd = "pnpm uninstall"; pou = "pnpm outdated"; pt = "pnpm test"; pmt = "pnpm multi test"; pmd = "pnpm multi uninstall"; pmit = "pnpm multi install-test"; pup = "pnpm update"; pupl = "pnpm update --latest"; ppr = "pnpm prune"; pprp = "pnpm prune --production"; pli = "pnpm link"; pdi = "pnpm dislink"; pul = "pnpm unlink"; px = "pnpx"; bn = "bun"; bni = "bun install"; bna = "bun add"; bnad = "bun add --dev"; bnr = "bun run"; bnu = "bun update"; bnrm = "bun remove"; bnd = "bun dev"; bnp = "bun pm"; bnl = "bun pm ls"; bnt = "bun test"; bntw = "bun test --watch"; bnx = "bunx"; np = "npm"; npi = "npm install"; npl = "npm ls"; npr = "npm run"; npb = "npm run build"; nprb = "npm run build"; npa = "npm install --save"; npad = "npm install --save-dev"; npd = "npm uninstall"; npt = "npm test"; npup = "npm update"; nppr = "npm prune"; npprp = "npm prune --production"; npli = "npm link"; npul = "npm unlink"; }; programs.git.attributes = [ "*.lockb diff=lockb" ]; programs.git.extraConfig."diff.lockb" = { textconv = "bun"; binary = true; }; xdg.configFile.".bunfig.toml".text = '' [install.cache] dir = "${config.xdg.cacheHome}/bun/" ''; xdg.configFile."npm/config".text = '' prefix=''${HOME}/.local cache=${config.xdg.cacheHome}/npm/ store-dir=${config.xdg.cacheHome}/pnpm/ always-auth=true sign-git-tag=true rebuild-bundle=false update-notifier=false registry=https://registry.npmjs.org/ @jsr:registry=https://npm.jsr.io ''; } |