My Asp.NET Web Form (.aspx) pages uses the MicrosoftAjax.js file like :
<script src="../../Scripts/MicrosoftAjax.js"></script>
I want to replace this legacy MicrosoftAjax.js with Typescript. I came across this TypeScript Port for AJAX framework on git that demonstrates re-implementation of AJAX framework with TypeScript but I am not sure how this can replace the MicrosoftAjax.js in an HTML/JS .aspx page.
Has anyone been through a similar re-implementation ? All I need is the steps or a working example that can provide me clues to achieve this migration.