I'm writing an app in NativeScript, using Typescript and Angular.
Something weird happened - suddenly the code I write in main.ts file has no effect on the app. I checked to see - the corresponding main.js file did npt change after running 'tns build ios/android
' and 'tns run ios/android
'.
So I want to ask - since when writing in NativeScript - every .ts file gets "translated" to .js file - is it safe to delete the corresponding main.js file so that a new updated main.js file is created?
Thanks.