So, noob question. I currently have a project done in plain Javascript with PIXI.js however I do not get type anotations or Intellisense in my vscode ide. I'm importing the library as the guide shows.
<script src="https://pixijs.download/release/pixi.js"></script>
Then I open the HTML file with Live Server.
My code is starting to grow large and for obvious reasons and I want to have intellisense in my code and type anotations. I also want to migrate all my code to TypeScript, but I dont want to manually compile all of my .ts files everytime i make a change. What is the best way to setup this?