What does "tsc -p" do in node CLI (ok)

https://stackoverflow.com/questions/72497148/what-does-p-do-in-node-cli

The answer to the title of the question is:

  1. node -p stands for "evaluate and --print" (like -e but with output)

however the provided example brings in some confusion:

  1. tsc -p stands for location of config --project

  2. npx -p stands for --parseable or --package

  3. npx tailwindcss -p would be a flag for tailwindcss CLI

Last updated