Doubt with ionic design generation

1

I have this environment installed:

  

Nodejs = node-v6.9.1-x86.msi

     

npm = 3.10.8

     

jdk = jdk1.8.0_91

     

Cordova = 6.4.0

     

ionic = 2.1.13

On entering cmd as administrator, I requested the creation of a project forcing the summer ionic 2, I noticed that the folder structure is different and the extension of the files and "ts", as I could have the version in "js "?

 ionic start nomeAplicacao tabs --v2
    
asked by anonymous 30.11.2016 / 02:38

1 answer

0

Use the ionic-cli commands; start, generate on Ionic 2 can not generate .js, only .ts.

Options:

  • Use Ionic 1.x ionic start todo blank Skip argument --v2 Ionic 1 Docs

  • Build your own workflow.

  • The first beta releases of Ionic 2 had the no-ts argument on the start command but it was removed. Font As far as I know the team has all the efforts and focus on TypeScript. Providing only the creation of files with TypeScript extension. Font

        
    30.11.2016 / 03:54