snippettypescriptCritical
How can I generate a tsconfig.json file?
Viewed 0 times
howgeneratefilecantsconfigjson
Problem
How can I generate a
I tried command
tsconfig.json via the command line? I tried command
tsc init, but this doesn't work.Solution
It is supported since the release of TypeScript 1.6.
The correct command is
Try to run in your console the following to check the version:
If the version is older than 1.6 you will need to update:
Remember that you need to install node.js to use npm.
The correct command is
--init not init:$ tsc --initTry to run in your console the following to check the version:
$ tsc -vIf the version is older than 1.6 you will need to update:
$ npm install -g typescriptRemember that you need to install node.js to use npm.
Code Snippets
$ tsc --init$ npm install -g typescriptContext
Stack Overflow Q#36916989, score: 792
Revisions (0)
No revisions yet.