c8112002
c8112002

Reputation: 385

ionic-gulp-browserify-typescript: What version of typescript is used?

I created an Ionic project with Typescript as below.

ionic start MyIonic2Project tutorial --v2 --ts

In gulpfile.js which is created automatically, ionic-gulp-browserify-typescript is used to compile Typescript.

My question is what version of typescript is used by ionic-gulp-browserify-typescript.

Upvotes: 0

Views: 440

Answers (1)

Chris
Chris

Reputation: 2895

ionic-gulp-browserify-typescript uses the tsify plugin internally, which maintains it's own TypeScript version. As of right now, this is 1.8.7, but that's likely to change, so you should keep an eye on the package.json or npm page.

Upvotes: 1

Related Questions