-4
I am trying to follow the instructions of this site to create an application in Vue: Link
The problem is that I don’t understand what it needs me to do first. Should I download the file from github? He asks me to install Webpack and Vue, but where can I get it(I searched their website but could not find)?
In this part of the site he speaks:
You’ll want to Bring your Typescript files Together - Both the code you’ll be writing as well as any necessary declaration files. To do this, you’ll need to create a
"tsconfig.json"
which contains a list of your input files as well as all your Compilation Settings. Simply create a new file in your project root named tsconfig.json and Fill it with the following Contents:
I did not understand what he asked me. because I just copied the commands on bash
that I had on the site, so I couldn’t find any file with that name. Someone could shed some light on this?
PS: I would ask my teacher, but he wouldn’t help me, I’ve tried
I’m not sure if this fits the site. The commands you run on
bash
are only to install the dependencies, if you ran thenpm install <nome da dependência>
, you already have Typescript and Vue. This filetsconfig.json
is for you to create yourself, in which you declare some rules to define the behavior ofTypeScript
. And yes, the idea is to create these files following the example of the tutorial.– Andre
It is so much information together in the tutorial that I end up getting lost easy
– riki481