4.9 KiB
4.9 KiB
Dev Mode is a new feature for TypeScript 1.4 and higher that allows you to
- Debug the script side of the language service in Visual Studio.
- Use a custom language service file of your choosing.
Enabling script debugging
Note: You may also use the VSDevMode.ps1 script to easily set these values. See the comments in the script for usage.
- Open up the Registry Editor (
regedit.exe
from the Run prompt). - If you are using...
- Visual Studio 2013: Navigate to
HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\12.0\TypeScriptLanguageService
(or create the key if it does not exist). - Visual Studio 2015: Navigate to
HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\14.0\TypeScriptLanguageService
(or create the key if it does not exist).
- Create a new DWORD (32-bit) Value with the name
EnableDevMode
. - Right click the
EnableDevMode
value and Modify it. - Change the value data to
1
.
Using a custom language service file
Note: You may also use the VSDevMode.ps1 script to easily set these values. See the comments in the script for usage.
- Open up the Registry Editor.
- If you are using...
- Visual Studio 2013: Navigate to
HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\12.0\TypeScriptLanguageService
(or create the key if it does not exist). - Visual Studio 2015: Navigate to
HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\14.0\TypeScriptLanguageService
(or create the key if it does not exist).
- Create a new String Value with the name
CustomTypeScriptServicesFileLocation
. - Right click the
CustomTypeScriptServicesFileLocation
value and Modify it. - Change the value data to the full path of your alternative services file (e.g.
C:\Users\Daniel\TypeScript\built\local\typescriptServices.js
)
Hot swapping
When the language service's script side is modified in any way (whether or not you are using a custom location for your language service file), it will be reloaded on the fly for a given thread the next time any of that thread's services are requested. However, this means that if debugging, your language service threads will be purged.
Debugging the language service in Visual Studio using Visual Studio
- Have a running instance of Visual Studio 2013/2015 with an open TypeScript file.
- Open a new instance of Visual Studio 2013/2015.
- Bring up the Attach to Process dialog by either
- Using menu bar and navigating from
Debug
->Attach to Process
.
- Clicking on the
Attach
button from the Standard toolbar if it is visible.
- In the row labeled
Attach to:
, click on theSelect...
button.
- Click the radio button
Debug these code types
and selectScript
. Then press OK.
- Find the appropriate Visual Studio instance in your list. Visual Studio instances have the process name
devenv.exe
and you can typically narrow down your instance looking for its current file in the Title field. - Hit the
Attach
button. In the Solution Exporer. you should now see four active debuggers (one for each language service thread).
At this point you should be able to hit debug points and get an understanding of what's going on.
Language Service Threads
- Classifier_N: This thread runs the lexical classifier - a line-oriented classifier which is primarily concerned with fast rudimentary colorization.
- LanguageService_N and LanguageService_N: Unfortunately these haven't been distinctly named.
- One of these is the syntactic classifier, giving accurate (semantically agnostic) classifications.
- The other performs all syntax-related questions such as formatting, smart indentation, etc.
- CoreServices_N: This is used to perform semantic operations such as providing diagnostics, completion lists, quick info, etc. Effectively, anything that needs the typechecker will use this thread.