HiveBrain v1.2.0
Get Started
← Back to all entries
snippettypescriptCritical

How can I generate a tsconfig.json file?

Submitted by: @import:stackoverflow-api··
0
Viewed 0 times
howgeneratefilecantsconfigjson

Problem

How can I generate a 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 --init not init:

$ tsc --init


Try to run in your console the following to check the version:

$ tsc -v


If the version is older than 1.6 you will need to update:

$ npm install -g typescript


Remember that you need to install node.js to use npm.

Code Snippets

$ tsc --init
$ npm install -g typescript

Context

Stack Overflow Q#36916989, score: 792

Revisions (0)

No revisions yet.