Movatterモバイル変換


[0]ホーム

URL:


Tryagent mode in VS Code!

Dismiss this update

Compiling TypeScript

TypeScript is a typed superset of JavaScript that transpiles to plain JavaScript. It offers classes, modules, and interfaces to help you build robust components.

Install the TypeScript compiler

Visual Studio Code includes TypeScript language support but does not include the TypeScript compiler,tsc. You will need to install the TypeScript compiler either globally or in your workspace to transpile TypeScript source code to JavaScript (tsc HelloWorld.ts).

The easiest way to install TypeScript is through npm, theNode.js Package Manager. If you have npm installed, you can install TypeScript globally (-g) on your computer by:

npm install -g typescript

You can test your install by checking the version or help.

tsc --versiontsc --help

Another option is to install the TypeScript compiler locally in your project (npm install --save-dev typescript) and has the benefit of avoiding possible interactions with other TypeScript projects you may have.

Compiler versus language service

It is important to keep in mind that VS Code's TypeScript language service is separate from your installed TypeScript compiler. You can see the VS Code's TypeScript version in the language Status Bar item when you open a TypeScript file.

TypeScript version displayed in the language status in the Status Bar.

Tip

You can pin the TypeScript version to the Status Bar by using thepin icon.

Later in the article, we'll discuss how you canchange the version of TypeScript language service that VS Code uses.

tsconfig.json

Typically the first step in any new TypeScript project is to add atsconfig.json file. Atsconfig.json file defines the TypeScriptproject settings, such as the compiler options and the files that should be included. To do this, open up the folder where you want to store your source and add a new file namedtsconfig.json. Once in this file, IntelliSense (⌃Space (Windows, LinuxCtrl+Space)) will help you along the way.

tsconfig.json IntelliSense

A simpletsconfig.json looks like this for ES5,CommonJSmodules and source maps:

{  "compilerOptions": {    "target":"ES5",    "module":"CommonJS",    "sourceMap":true  }}

Now when you create a.ts file as part of the project we will offer up rich editing experiences and syntax validation.

Transpile TypeScript into JavaScript

VS Code integrates withtsc through our integratedtask runner. We can use this to transpile.ts files into.js files. Another benefit of using VS Code tasks is that you get integrated error and warning detection displayed in theProblems panel. Let's walk through transpiling a simple TypeScript Hello World program.

Step 1: Create a simple TS file

Open VS Code on an empty folder and create ahelloworld.ts file, place the following code in that file...

let message:string ='Hello World';console.log(message);

To test that you have the TypeScript compilertsc installed correctly and a working Hello World program, open a terminal and typetsc helloworld.ts. You can use the Integrated Terminal (⌃` (Windows, LinuxCtrl+`)) directly in VS Code.

You should now see the transpiledhelloworld.js JavaScript file, which you can run if you haveNode.js installed, by typingnode helloworld.js.

build and run Hello World

Step 2: Run the TypeScript build

ExecuteRun Build Task (⇧⌘B (Windows, LinuxCtrl+Shift+B)) from the globalTerminal menu. If you created atsconfig.json file in the earlier section, this should present the following picker:

TypeScript Build

Select thetsc: build entry. This will produce aHelloWorld.js andHelloWorld.js.map file in the workspace.

If you selectedtsc: watch, the TypeScript compiler watches for changes to your TypeScript files and runs the transpiler on each change.

Under the covers, we run the TypeScript compiler as a task. The command we use is:tsc -p .

Step 3: Make the TypeScript Build the default

You can also define the TypeScript build task as the default build task so that it is executed directly when triggeringRun Build Task (⇧⌘B (Windows, LinuxCtrl+Shift+B)). To do so, selectConfigure Default Build Task from the globalTerminal menu. This shows you a picker with the available build tasks. Select TypeScripttsc: build, which generates the followingtasks.json file in a.vscode folder:

{    // See https://go.microsoft.com/fwlink/?LinkId=733558    // for the documentation about the tasks.json format    "version":"2.0.0",    "tasks": [        {            "type": "typescript",            "tsconfig": "tsconfig.json",            "problemMatcher": [                "$tsc"            ],            "group": {                "kind": "build",                "isDefault": true            }        }    ]}

Notice that the task has agroup JSON object that sets the taskkind tobuild and makes it the default. Now when you select theRun Build Task command or press (⇧⌘B (Windows, LinuxCtrl+Shift+B)), you are not prompted to select a task and your compilation starts.

Tip: You can also run the program using VS Code's Run/Debug feature. Details about running and debugging Node.js applications in VS Code can be found in theNode.js tutorial

Step 4: Reviewing build issues

The VS Code task system can also detect build issues through aproblem matcher. A problem matcher parses build output based on the specific build tool and provides integrated issue display and navigation. VS Code ships with many problem matchers and$tsc seen above intasks.json is the problem matcher for TypeScript compiler output.

As an example, if there was a simple error (extra 'g' inconsole.log) in our TypeScript file, we may get the following output fromtsc:

HelloWorld.ts(3,17): error TS2339: Property 'logg' does not exist on type 'Console'.

This would show up in the terminal panel (⌃` (Windows, LinuxCtrl+`)) and selecting theTasks - build tsconfig.json in the terminal view dropdown.

You can see the error and warning counts in the Status Bar. Click on the error and warnings icon to get a list of the problems and navigate to them.

Error in Status Bar

You can also use the keyboard to open the list⇧⌘M (Windows, LinuxCtrl+Shift+M).

Tip: Tasks offer rich support for many actions. Check theTasks topic for more information on how to configure them.

JavaScript source map support

TypeScript debugging supports JavaScript source maps. To generate source maps for your TypeScript files, compile with the--sourcemap option or set thesourceMap property in thetsconfig.json file totrue.

In-lined source maps (a source map where the content is stored as a data URL instead of a separate file) are also supported, although in-lined source is not yet supported.

Output location for generated files

Having the generated JavaScript file in the same folder at the TypeScript source will quickly get cluttered on larger projects. You can specify the output directory for the compiler with theoutDir attribute.

{  "compilerOptions": {    "target":"ES5",    "module":"CommonJS",    "outDir":"out"  }}

Hiding derived JavaScript files

When you are working with TypeScript, you often don't want to see generated JavaScript files in the File Explorer or in Search results. VS Code offers filtering capabilities with afiles.excludeworkspace setting and you can easily create an expression to hide those derived files:

**/*.js: { "when": "$(basename).ts" }

This pattern will match on any JavaScript file (**/*.js) but only if a sibling TypeScript file with the same name is present. The File Explorer will no longer show derived resources for JavaScript if they are compiled to the same location.

Hiding derived resourcesHiding derived resources

Add thefiles.exclude setting with a filter in the workspacesettings.json file, located in the.vscode folder at the root of the workspace. You can open the workspacesettings.json via thePreferences: Open Workspace Settings (JSON) command from the Command Palette (⇧⌘P (Windows, LinuxCtrl+Shift+P)).

To exclude JavaScript files generated from both.ts and.tsx source files, use this expression:

"files.exclude": {    "**/*.js": {"when":"$(basename).ts" },    "**/**.js": {"when":"$(basename).tsx" }}

This is a bit of a trick. The searchglob patterns is used as a key. The settings above use two different glob patterns to provide two unique keys but the search will still match the same files.

Using newer TypeScript versions

VS Code ships with a recent stable version of the TypeScript language service and uses this by default to provide IntelliSense in your workspace. The workspace version of TypeScript is independent of the version of TypeScript you use to compile your*.ts files. You can just use VS Code's built-in TypeScript version for IntelliSense without worry for most common cases, but sometimes you may need to change the version of TypeScript VS Code uses for IntelliSense.

Reasons for doing this include:

  • Trying out the latest TypeScript features by switching to the TypeScript nightly build (typescript@next).
  • Making sure you are using the same version of TypeScript for IntelliSense that you use to compile your code.

The active TypeScript version and its install location can be displayed in the Status Bar when you pinned the version number from language Status Bar with viewing a TypeScript file:

TypeScript status bar version

You have a few options if you want to change the default version of TypeScript in your workspace:

Using the workspace version of TypeScript

If your workspace has a specific TypeScript version, you can switch between the workspace version of TypeScript and the version that VS Code uses by default by opening a TypeScript or JavaScript file and clicking on the TypeScript version number in the Status Bar. A message box will appear asking you which version of TypeScript VS Code should use:

TypeScript version selector

Use this to switch between the version of TypeScript that comes with VS Code and the version of TypeScript in your workspace. You can also trigger the TypeScript version selector with theTypeScript: Select TypeScript Version command.

VS Code will automatically detect workspace versions of TypeScript that are installed undernode_modules in the root of your workspace. You can also explicitly tell VS Code which version of TypeScript to use by configuring thetypescript.tsdk in your user or workspacesettings. Thetypescript.tsdk setting should point to a directory containing the TypeScripttsserver.js file. You can find the TypeScript installation location usingnpm list -g typescript. Thetsserver.js file is usually in thelib folder.

For example:

{  "typescript.tsdk":"/usr/local/lib/node_modules/typescript/lib"}

Tip: To get a specific TypeScript version, specify@version during npm install. For example, for TypeScript 3.6.0, you would usenpm install --save-dev typescript@3.6.0. To preview the next version of TypeScript, runnpm install --save-dev typescript@next.

Note that whiletypescript.tsdk points to thelib directory inside oftypescript in these examples, thetypescript directory must be a full TypeScript install that contains the TypeScriptpackage.json file.

You can also tell VS Code to use a specific version of TypeScript in a particular workspace by adding atypescript.tsdk workspace setting pointing to the directory of thetsserver.js file:

{  "typescript.tsdk":"./node_modules/typescript/lib"}

Thetypescript.tsdk workspace setting only tells VS Code that a workspace version of TypeScript exists. To actually start using the workspace version for IntelliSense, you must run theTypeScript: Select TypeScript Version command and select the workspace version.

Using TypeScript nightly builds

The simplest way to try out the latest TypeScript features in VS Code is to install theJavaScript and TypeScript Nightly extension.

This extension automatically replaces VS Code's built-in TypeScript version with the latest TypeScript nightly build. Just make sure youswitch back to using VS Code's TypeScript version if you've configured your TypeScript version with theTypeScript: Select TypeScript Version command.

Mixed TypeScript and JavaScript projects

It is possible to have mixed TypeScript and JavaScript projects. To enable JavaScript inside a TypeScript project, you can set theallowJs property totrue in thetsconfig.json.

Tip: Thetsc compiler does not detect the presence of ajsconfig.json file automatically. Use the–p argument to maketsc use yourjsconfig.json file, e.g.tsc -p jsconfig.json.

Working with large projects

If you are working in a codebase with hundreds or thousands of TypeScript files, here are some steps you can take to improve both the editing experience in VS Code as well as compile times on the command line.

Make sure your tsconfig only includes files you care about

Useinclude orfiles in your project'stsconfig.json to make sure the project only includes the files that should be part of the project.

More information on configuring your project'stsconfig.json.

Break up your project using project references

Instead of structuring your source code as a single large project, you can improve performance by breaking it up into smaller projects usingproject references. This allows TypeScript to load just a subset of your codebase at a time, instead of loading the entire thing.

See theTypeScript documentation for details on how to use project references and best practices for working with them.

Next steps

Read on to find out about:

Common questions

How do I resolve a TypeScript "Cannot compile external module" error?

If you get that error, resolve it by creating atsconfig.json file in the root folder of your project. The tsconfig.json file lets you control how Visual Studio Code compiles your TypeScript code. For more information, see thetsconfig.json overview.

Why do I get different errors and warnings with VS Code than when I compile my TypeScript project?

VS Code ships with a recent stable version of the TypeScript language service and it may not match the version of TypeScript installed globally on your computer or locally in your workspace. For that reason, you may see differences between your compiler output and errors detected by the active TypeScript language service. SeeUsing newer TypeScript versions for details on installing a matching TypeScript version.

Can I use the version of TypeScript that ships with VS 2022?

No, the TypeScript language service that ships with Visual Studio 2019 and 2022 isn't compatible with VS Code. You will need to install a separate version of TypeScript fromnpm.

Why are some errors reported as warnings?

By default, VS Code TypeScript displays code style issues as warnings instead of errors. This applies to:

  • Variable is declared but never used
  • Property is declared but its value is never read
  • Unreachable code detected
  • Unused label
  • Fall through case in switch
  • Not all code paths return a value

Treating these as warnings is consistent with other tools, such as TSLint. These will still be displayed as errors when you runtsc from the command line.

You can disable this behavior by setting"typescript.reportStyleChecksAsWarnings": false in your Usersettings.

05/08/2025

[8]ページ先頭

©2009-2025 Movatter.jp