Skip to content

Instantly share code, notes, and snippets.

@fhj-code
fhj-code / tsconfig.json
Created March 9, 2024 15:14 — forked from rzane/tsconfig.json
Typescript config for a client side app
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"esModuleInterop": true,
@carlessanagustin
carlessanagustin / win2ix.md
Last active November 4, 2025 21:14
Windows and Unix command line equivalents
Windows command Unix command Notes
set env Set on Windows prints a list of all environment variables. For individual environment variables, set is the same as echo $ on Unix.
set Path export $PATH Print the value of the environment variable using set in Windows.
set PROJ -- result: PROJ=c:\project
echo %PROJ% echo $PROJ result: c:\project

|