How can I generate a tsconfig.json via the command line? I tried command tsc init, but this doesn\'t work.
tsconfig.json
tsc init
install TypeScript :
npm install typescript
add tsc script to package.json:
"scripts": { "tsc": "tsc" },
run this:
npx tsc --init