website

#astro#js#html#css

git clone https://git.pyrossh.dev/website

木 Personal website of pyrossh. Built with astrojs, shiki, vite.


ff167cfpyrossh 2026-07-08T20:04:33+05:30
fix: add node types for process.env in S3 client
Files changed (2) hide show
  1. repos/config/nushell/env.nu +18 -0
  2. tsconfig.json +1 -1
repos/config/nushell/env.nu ADDED
@@ -0,0 +1,18 @@
1
+ # env.nu
2
+ #
3
+ # Installed by:
4
+ # version = "0.107.0"
5
+ #
6
+ # Previously, environment variables were typically configured in `env.nu`.
7
+ # In general, most configuration can and should be performed in `config.nu`
8
+ # or one of the autoload directories.
9
+ #
10
+ # This file is generated for backwards compatibility for now.
11
+ # It is loaded before config.nu and login.nu
12
+ #
13
+ # See https://www.nushell.sh/book/configuration.html
14
+ #
15
+ # Also see `help config env` for more options.
16
+ #
17
+ # You can remove these comments if you want or leave
18
+ # them for future reference.
tsconfig.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "noEmit": true,
9
9
  "isolatedModules": true,
10
10
  "allowImportingTsExtensions": true,
11
- "types": ["@cloudflare/workers-types"]
11
+ "types": ["@cloudflare/workers-types", "node"]
12
12
  },
13
13
  "include": ["src"]
14
14
  }