IntelliJ IDEA 2024.2 Help

Running and debugging TypeScript

With IntelliJ IDEA, you can run and debug both client-side TypeScript code and server-side TypeScript code running in Node.js.

Run a client-side TypeScript application

Before running or debugging an application, you need to compile your TypeScript code into JavaScript. You can do that using the built-in TypeScript compiler and other tools, including ts-node for running TypeScript with Node.js, used separately or as part of the build process

During compilation, there can also be generated source maps that set correspondence between your TypeScript code and the JavaScript code that is actually executed. As a result, you can set breakpoints in your TypeScript code, launch the application with the run/debug configuration of the type JavaScript Debug (for client-side code) or Node.js, and then step through your original TypeScript code, thanks to generated sourcemaps.

You can write a client-side application in TypeScript, compile the code as described in Compiling TypeScript into JavaScript, and then run and debug your application exactly in the same way as client-side applications written in JavaScript. The only difference is that you can set breakpoints right in the TypeScript code.

  1. Compile the TypeScript code into JavaScript.

  2. In the editor, open the HTML file with a reference to the generated JavaScript file. This HTML file does not necessarily have to be the one that implements the starting page of the application.

  3. Do one of the following:

    • Choose View | Open in Browser from the main menu or press Alt+F2. Then select the desired browser from the list.

    • Hover over the code to show the browser icons bar: the IntelliJ IDEA icon Chrome Firefox Safari Opera Internet Explorer Edge. Click the icon that indicates the desired browser.

Debug a client-side TypeScript application

If your application is running on the built-in IntelliJ IDEA server, refer to Running a client-side TypeScript application above, you can also debug it in the same way as JavaScript running on the built-in server.

Debug client-side TypeScript on the built-in server

Debug a TypeScript application running on an external web server

Most often, you may want to debug a client-side application running on an external development web server, for example, powered by Node.js.

Debug client-side TypeScript on an external server
  1. Configure the built-in debugger as described in Configuring JavaScript debugger.

  2. To enable source maps generation, open your tsconfig.json and set the sourceMap property to true, as described in Create a tsconfig.json file.

  3. Configure and set breakpoints in the TypeScript code.

  4. Run the application in the development mode. Often you need to run npm start for that.

    Most often, at this stage TypeScript is compiled into JavaScript and source maps are generated. For more information, refer to Compiling TypeScript into JavaScript.

    When the development server is ready, copy the URL address at which the application is running in the browser - you will need to specify this URL address in the run/debug configuration.

  5. Go to Run | Edit Configurations. Alternatively, select Edit Configurations from the Run widget on the toolbar.

    Open the Edit Configurations dialog

    In the Edit Configurations dialog that opens, click the Add button (the Add button) on the toolbar and select JavaScript Debug from the list. In the Run/Debug Configuration: JavaScript Debug dialog that opens, specify the URL address at which the application is running. This URL can be copied from the address bar of your browser as described in Step 3 above.

    Debug client-side TypeScript on an external server: run configuration
  6. From the Run widget list on the toolbar, select the newly created configuration and click the Debug button next to it. The URL address specified in the run configuration opens in the browser and the Debug tool window appears.

    You may need to refresh the page in the browser to get the controls in the Debug tool window available.

  7. In the Debug tool window, proceed as usual: step through the program, stop and resume the program execution, examine it when suspended, view actual HTML DOM, run JavaScript code snippets in the Console, and so on.

Run and debug server-side TypeScript code

With IntelliJ IDEA, you can run and debug server-side TypeScript code without previously compiling it into JavaScript.

For running and debugging of server-side multiple TypeScript file applications IntelliJ IDEA uses a built-in loader. When running or debugging a single file, you can turn the loader off by selecting None from the TypeScript loader list in the run/debug configuration.

Before you start

  1. Make sure you have Node.js 18 or higher on your computer.

  2. Make sure the Node.js plugin is enabled in the settings. Press Ctrl+Alt+S to open settings and then select Plugins. Click the Installed tab. In the search field, type Node.js. For more information about plugins, refer to Managing plugins.

Run server-side TypeScript code

You can run server-side TypeScript from the Project tool window, from the editor, or from the Run widget.

  • In the Project tool window, right-click the TypeScript file to run or the starting file of your application and select Run <TypeScript file name> from the context menu.

Run server-side TypeScript from the Project tool window
  • In the editor, open the TypeScript file to run or the starting file of your application and select Run <TypeScript file name> from the list.

Run server-side TypeScript from the editor
  • In the editor, open the TypeScript file to run or the starting file of your application. Then from the Run widget on the toolbar select Current file and click the Run icon next to it.

    Alternatively, from the Run widget select a previously created run/debug configuration and click the Run icon next to it.

Run server-side TypeScript from the Run widget

Run TypeScript scratch files

To run a scratch file, besides the above-mentioned methods, you can also click the Run icon in the gutter and select the required action from the list.

Run a TypeScript scratch file

Auto-generated temporary run/debug configuration

No matter which way to run server-side TypeScript code you might choose, IntelliJ IDEA creates a temporary run/debug configuration of the type Node.js which you can save, edit, and reuse for running and debugging.

Node.js run/debug configuration for running and debugging server-side TypeScript

Learn more from Run/debug configurations.

Debug server-side TypeScript code

You can debug server-side TypeScript from the Project tool window, from the editor, or from the Run widget.

  1. Set the breakpoints where necessary.

  2. In the Project tool window, right-click the TypeScript file to debug or the starting file of your application and select Debug <TypeScript file name> from the context menu.

Run server-side TypeScript from the Project tool window
  1. Set the breakpoints where necessary.

  2. In the editor, open the TypeScript file to debug or the starting file of your application and select Debug <TypeScript file name> from the context menu.

Debug server-side TypeScript from the editor
  1. Set the breakpoints where necessary.

  2. In the editor, open the TypeScript file to debug or the starting file of your application. Then from the Run widget on the toolbar select Current file and click the Debug icon next to it.

    Alternatively, from the Run widget select a previously created run/debug configuration and click the Debug icon next to it.

Debug server-side TypeScript from the Run widget

Debug TypeScript scratch files

To debug a scratch file, besides the above-mentioned methods, you can also click the Run icon in the gutter and select the required action from the list.

Run a TypeScript scratch file

Use ts-node

If you need to run or debug single TypeScript files with Node.js, you can use ts-node instead of compiling your code as described in Compiling TypeScript into JavaScript.

Install ts-node

  • In the embedded Terminal (Alt+F12) , type:

    npm install --save-dev ts-node

Create a custom Node.js run/debug configuration for ts-node

  1. Go to Run | Edit Configurations. Alternatively, select Edit Configurations from the Run widget on the toolbar.

    Open the Edit Configurations dialog

    In the Edit Configurations dialog that opens, click the Add button (the Add button) on the toolbar and select Node.js from the list. The Run/Debug Configuration: Node.js dialog opens.

  2. In the Node Parameters field, add --require ts-node/register.

  3. Specify the Node.js interpreter to use.

    If you choose the Project alias, IntelliJ IDEA will automatically use the project default interpreter from the Node interpreter field on the Node.js page . In most cases, IntelliJ IDEA detects the project default interpreter and fills in the field itself.

    You can also choose another configured local or remote interpreter or click the Browse button and configure a new one.

  4. In the File field, specify the TypeScript file to run or debug. Depending on your workflow, you can do that explicitly or using a macro.

    • If you are going to always launch the same TypeScript file, click the Browse button and select this file in the dialog that opens. By default, the run/debug configuration gets the name of the selected file.

    • If you need to launch different files, type $FilePathRelativeToProjectRoot$. With this macro, IntelliJ IDEA will always launch the file in the active editor tab.

  5. If necessary, specify any additional parameters for ts-node (for example, --project tsconfig.json) in the Application parameters field.

  6. Save the configuration.

Custom run-debug configuration for ts-node

Run server-side TypeScript with ts-node

Depending on the way you specified your TypeScript file in the run/debug configuration, do one of the following:

  • If you typed the filename explicitly, select the required configuration from the Run widget on the toolbar and click the Run button next to the list or press Shift+F10.

  • If you specified a macro, open the TypeScript file to run in the editor, select the newly created configuration from the Run widget on the toolbar, and click the Run button or press Shift+F10.

IntelliJ IDEA shows the output in the Run tool window.

Debug server-side TypeScript with ts-node

  1. In the TypeScript file to debug, set the breakpoints as necessary.

  2. Depending on the way you specified your TypeScript file in the run/debug configuration, do one of the following:

    • If you typed the filename explicitly, select the required configuration from the Run widget on the toolbar and click the Debug button or press Shift+F9.

    • If you specified a macro, open the TypeScript file to debug in the editor, select the newly created configuration from the Run widget and click the Debug button or press Shift+F9.

Last modified: 31 July 2024