Install npm and install the cordova and typescript by this commands:
npm install -g cordova
npm install -g typescript
To compile the app, run the following command in the root folder of the app.
tsc
Change the App-Adapter url in the Settings.ts file and recompile the app.
To see the app in the browser, run this command in the root folder:
cordova run browser
Optional you can run the following comand. Then the app in the browser is automatically reloded after the complie comand.
cordova run browser -- --live-reload
Create a Emulator with this tutorial. After that call the follwing commands to start the app in the emulator:
cordova prepare
cordova run android
Not testet.