Problems persist with TypeScript-infused solutions, endlessly loading on VS2013

Every time I try to open a solution with TypeScript in Visual Studio 2013, I encounter the following issue:

https://i.sstatic.net/zpCrO.png

(details omitted for privacy)

This problem eventually results in the well-known error message:

https://i.sstatic.net/Ttkjm.png

To resolve this, I have to forcefully terminate the process.

I have put in a request for VS2015, however, the approval process is expected to be lengthy. In the meantime, I would like to find a solution to make VS2013 functional again, as there's no guarantee that upgrading to VS2015 will fix the issue (although it should).

Answer №1

It would be ideal to resolve the issues with VS2013, especially since there is no guarantee that upgrading to VS2015 will solve the problem (although it should).

Unfortunately, reports have been sent to Microsoft multiple times and it seems unlikely that the issue will be addressed: (still ongoing after 3 years)

(resolved 3 years ago)

The good news is that the issue has been resolved in Visual Studio 2015, as mentioned in https://github.com/Microsoft/TypeScript/issues/1999

If you encounter any problems, try removing Glimpse, Glimpse.AspNet, and Glimpse.Mvc packages.

Refer to https://github.com/Microsoft/TypeScript/issues/4528, where the solution recommends installing TypeScript 1.5.4

I have requested VS2015, but approval is required which may take some time.

If you do not have access to an MSDN subscription for downloading Pro or Enterprise editions, consider downloading the Community Edition temporarily from which offers most features.

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

Encountering a System.Configuration.ConfigurationException error while running a service built on .NET 4.0 on a Windows Server 2012 system

Greetings! I currently have a functional Windows service that is operating smoothly on Windows Service 2003 using .NET 4.0. I attempted to install the same service on Windows Service 2012 and achieved success. However, upon running the service, I encounte ...

What is the process for extracting a single hashtag using the Twitter API with JSON in JavaScript?

Currently, I am utilizing the npm package 'twit' in conjunction with node js to interact with the Twitter API. My goal is to retrieve the hashtags used by a specific user in their most recent tweets. By employing the following code snippet, I ca ...

Having difficulty retrieving images in a React Native project

I'm having difficulty importing and using an image because it doesn't seem to recognize the images no matter what path I try. click here for image description click here for image description I've even tried right-clicking and copying both ...

Obtain a variety of selections for multiple selects and individually incorporate them into a standard select menu

Is there a way to select multiple options from a list and add them to another list without losing any selections? Currently, when I add two selected options, they combine into one in the target list. Check out this JSFIDDLE EXAMPLE for reference. Here is ...

Different ways to update numerous TextBox.text values from a separate thread other than the UI thread while utilizing the same function

My issue involves updating multiple TextBox.text values from a thread other than the UI thread, as shown below: string bufferSerial; . . . private void serialPort1_DataReceived(object sender, System.IO.Ports.SerialDataReceivedEventArgs e) { bufferSeri ...

How can you effectively utilize .NET Memory Mapped File on Linux without the need for a persisted file?

When using .NET (dotnet 5.0) on Linux, MemoryMappedFile.CreateFromFile() functions properly (without support for mapName). However, CreateNew(), CreateOrOpen(), and OpenExisting() result in a System.PlatformNotSupportedException: Named maps are not support ...

Remove outdated cards from a React array

I am facing a complicated situation and require some assistance. Below is the code snippet: The function provided below is used to determine if a credit card has expired or not. It returns true if the card is expired and false if it's valid. const i ...

Steps to deactivate a div in React after a single click

When you click the "show" button for the first time, it displays "hello world" correctly. However, if you click on show again, it should not work. How can I make it so that after one click, it does not hide hello world if you click again? I've tried u ...

Error Message: Google Sheets Script encountered an issue while trying to align the cell content to the center using `

I seem to be encountering an issue with this particular script where it consistently generates the error mentioned in the title. Title: cell.setHorizontalAlignment(SpreadsheetApp.HorizontalAlignment.CENTER) function CustomFont() { // var spreadsheet ...

Securing access across multiple routes in a React application

I am facing a challenge in my React app where I need to verify the logged-in state before allowing access to multiple routes. Despite consulting various resources like Stack Overflow for solutions such as creating a Private Route, I have only found example ...

Can anyone help explain how to use Javascript to reverse the order of table row results that are being output

I am struggling to reverse the order of a table returned from a PHP database using JavaScript. Despite trying to use the reverse() method, I can't seem to get it to work. I would greatly appreciate any guidance you can provide. Below is the JavaScrip ...

After installing the npm package, use browserify to bundle the bs58 library

I am trying to bundle the bs58 module using browserify by following the instructions provided on this website: npm install --save bs58 npm install -g browserify browserify < /mypath/lib/bs58.js > /mypath/lib/bs85.bundle.js In my HTML + JS file, I ...

Tips for utilizing SSR data fetching in Next.js with Apollo Client

Trying to integrate the apollo-client with Next.js, I aim to fetch data within the getServerSideProps method. Let's consider having 2 components and one page- section.tsx represents component-1 const Section = () => { return ( <div& ...

Error Type: TypeError when using Mongoose's FindOneAndUpdate function

I am encountering difficulties while trying to implement a findOneAndUpdate query. //UserController UserDAO ['findOneAndUpdate'](userId, {& ...

Using HTML5 canvas to draw circles with additional metadata stored in variables

I'm designing a seating chart that will indicate spots with circles and show a tooltip on mouseover with the person's first name, last name, and possibly other details. I plan to use Kinetic.JS for region/tooltip support based on the tutorials I& ...

Combining JSON array objects in Vanilla Javascript to create a nested array based on a shared value

I have been searching for a solution to address my specific issue but have not found an exact match. If there is a similar question, please provide a link to the solution. I am looking to merge an array of objects that share a common value using vanilla J ...

Setting HTTP handlers dynamically within an ASP.NET application through programming

I am looking to create a web application dynamically from a console application. What I mean by this is that the web application within my console application is not tied to IIS/XSP. Currently, I generate the web application in a temporary directory and a ...

Instructions for printing a page and closing the Print window using Selenium

New to using Selenium: I tried the following code in Selenium to open the print window, but unfortunately it doesn't seem to work Keyboard keyboard = ((HasInputDevices)driver).getKeyboard(); keyboard.pressKey(Keys.ENTER); keyboard.pressKey(Keys.ch ...

Tips for invoking an external JavaScript function using AJAX

I find myself a bit confused. In my project, there is an external javascript file called Hierarchy.js located in the Scripts folder. This file contains several functions, one of which is KeySelected. I need to call this function in the OnClientItemSelected ...

Creating raw JavaScript from npm package:How to convert npm modules into plain

Is there a way to get a pre-compiled plain JavaScript file from the repository https://github.com/airbrake/airbrake-js? I'm looking for a solution without using bower, npm or any other tools - just a single JavaScript file. By the way: The file "http ...