
ts-node
List of commands for ts-node:
-
ts-node:tldr:0b4a0 ts-node: Transpile a TypeScript file to JavaScript without executing it.$ ts-node --transpile-only ${filename-ts}try on your machineexplain this command
-
ts-node:tldr:4e7b4 ts-node: Execute a TypeScript file without loading `tsconfig.json`.$ ts-node --skip-project ${filename-ts}try on your machineexplain this command
-
ts-node:tldr:5feeb ts-node: Execute a TypeScript file without compiling (`node` + `tsc`).$ ts-node ${filename-ts}try on your machineexplain this command
-
ts-node:tldr:94ffa ts-node: Evaluate TypeScript code passed as a literal on the command-line.$ ts-node --eval '${console-log("Hello World")}'try on your machineexplain this command
-
ts-node:tldr:c2f20 ts-node: Display TS-Node help.$ ts-node --helptry on your machineexplain this command
-
ts-node:tldr:cf3f0 ts-node: Execute a TypeScript file in script mode.$ ts-node --script-mode ${filename-ts}try on your machineexplain this command