TypeScript
Last modified: 01 April 2022Required plugin: JavaScript and TypeScript
The plugin is bundled with CLion and enabled by default.
warning
The page is available only when the JavaScript and Typescript plugin is enabled on the Settings/Preferences | Plugins page as described in Managing plugins.
tip
By default, the TypeScript Language Service checkbox is selected.
Node interpreter
In this field, specify the Node.js interpreter to use. If you choose the Project alias, CLion will automatically use the project default interpreter from the Node interpreter field on the Node.js page .
In most cases, CLion detects the project default interpreter and fills in the field itself. You can also choose another configured local interpreter or click and configure a new one.
TypeScript
In this field, specify the version of the TypeScript to use (CLion displays the currently chosen version).
By default, the
typescript
package from the project's node_modules folder is used.Bundled: choose this option to use the
typescript
package that is shipped with CLion without attempting to find another one.Select: choose this option to use a custom
typescript
package instead of the one bundled with CLion. In the dialog that opens, choose the path to the relevant package.If your project package manager is Yarn 2, you have to use the
typescript
package installed via Yarn 2. In this case,yarn:package.json:typescript
is by default selected.Learn more about package managers from npm and Yarn.
TypeScript Language Service
Select this checkbox to get native support from the TypeScript Language Service according to the up-to-date specifications. As a result:
Syntax and error highlighting is based on the annotations from the TypeScript Language Service.
Completion lists contain both suggestions from the TypeScript Language Service and suggestions calculated by CLion.
TypeScript code is compiled into JavaScript.
Item | Description |
---|---|
Recompile on changes |
|
Options | In this field, specify the command-line options to be passed to the TypeScript Language Service when the tsconfig.json file is not found. See the list of acceptable options at TSC arguments. Note that the |
tip
You can enhance completion in JavaScript files with suggestions from the TypeScript Language Service. To do that, add
'allowJS' : true
to your jsconfig.json or tsconfig.json file. Learn more from Code completion and Configure JavaScript libraries.
Thanks for your feedback!