Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial stab at a TypeScript blog post #5101

Merged
merged 14 commits into from
Jul 21, 2020
122 changes: 122 additions & 0 deletions site/content/blog/2020-06-04-svelte-and-typescript.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
---
title: Svelte <3 TypeScript
description: Typernetically enhanced web apps
author: Orta Therox
pngwn marked this conversation as resolved.
Show resolved Hide resolved
authorURL: https://twitter.com/orta
---

It's been on the TODO list for a while, and it's now happening. TypeScript with Svelte is now a first class citizen of the ecosystem.
orta marked this conversation as resolved.
Show resolved Hide resolved

We think it'll help you handle much larger Svelte code bases regardless of whether you use TypeScript or JavaScript.
orta marked this conversation as resolved.
Show resolved Hide resolved

<figure>
<img alt="Screenshot of TypeScript in Svelte" src="media/svelte-ts.png">
<figcaption>Image of TypeScript + Svelte in VS Code (theme is <a href="https://marketplace.visualstudio.com/items?itemName=karyfoundation.theme-karyfoundation-themes">Kary Pro</a>.)</figcaption>
</figure>

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think a lot of people will want to just try it out straight away, so here (above the fold) would be a good place to have the quickstart guide

Suggested change
## Try it now
You can start a new Svelte TypeScript project using the [normal template](https://github.com/sveltejs/template) by running `node scripts/setupTypeScript.js` before you do anything else:
npx degit sveltejs/template svelte-typescript-app
cd svelte-typescript-app
node scripts/setupTypeScript.js
If you're a VS Code user, make sure you're using the (new) [official extension](https://marketplace.visualstudio.com/items?itemName=svelte.svelte-vscode), which replaces the popular extension by James Birtles.
Later in this blog post, we'll detail the individual steps involved in using TypeScript in an existing Svelte project.

(side-note: how do you put code blocks inside a commit suggestion...?)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Possibly by giving the suggestion language 4 backticks instead of 3. But don't quote me on this.

Copy link
Contributor Author

@orta orta Jul 17, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This week I learned how:

GFMarkdown allows for the code fences to be an arbitrary size. Here I'm using four on the outer one:

```ts

```

## What does it mean to support TypeScript in Svelte?

orta marked this conversation as resolved.
Show resolved Hide resolved
TypeScript support in Svelte has been possible for a long time, but you had to mix a lot of disparate tools together and each project ran independently. Today, nearly all of these tools live under the Svelte organization and are maintained by a set of people who take responsibility over the whole pipeline and have common goals.

A week before COVID was declared a pandemic, [I pitched a consolidation](https://github.com/sveltejs/svelte/issues/4518) of the best Svelte tools and ideas from similar dev-ecosystems and provided a set of steps to get TypeScript support first class. Since then, many people have pitched in and wrote the code to get us there.
orta marked this conversation as resolved.
Show resolved Hide resolved

#### How does it work?

To understand the two main parts of TypeScript support, we'll compare it to the technique TypeScript uses to provide dev tools. There is a compiler `tsc` which you run on the command-line to convert `*.ts` to `*.js`, then there is a `TSServer` which is a node API that responds to requests from text editors. The `TSServer` is what provides all the JavaScript and TypeScript realtime introspection for editors while coding, and it has most of the compiler's code inside it.

For Svelte, we have the Svelte compiler, and now we have the [`svelte-language-server`](https://github.com/sveltejs/language-tools/tree/master/packages/language-server#svelte-language-server) which responds to text editor calls via the [Language Server Protocol standard](https://microsoft.github.io//language-server-protocol/overviews/lsp/overview/). First class TypeScript support means that _both_ of these two systems do good job of handling TypeScript code.

The Svelte compiler support for TypeScript is handled by [Christian Kaisermann](https://github.com/kaisermann)'s [`svelte-preprocess`](https://github.com/sveltejs/svelte-preprocess#svelte-preprocess) which is now an official Svelte project.

For the editor level, we took inspiration from [Pine's](https://github.com/octref) work in the [Vue](https://vuejs.org) ecosystem via [Vetur](https://github.com/vuejs/vetur). Vetur provides an [LSP](https://github.com/vuejs/vetur/blob/master/server), a VS Code extension and a [CLI](https://github.com/vuejs/vetur/blob/master/vti). Svelte now also has an [LSP](https://github.com/sveltejs/language-tools/blob/master/packages/language-server), a [VS Code extension](https://github.com/sveltejs/language-tools/blob/master/packages/svelte-vscode) and a [CLI](https://github.com/sveltejs/language-tools/blob/master/packages/svelte-check).
orta marked this conversation as resolved.
Show resolved Hide resolved


#### `*.svelte` Introspection

For the official Svelte VS Code extension, we built off the foundations which [James Birtles](https://github.com/UnwrittenFun) has created in [`UnwrittenFun/svelte-vscode`](https://github.com/UnwrittenFun/svelte-vscode) and [`UnwrittenFun/svelte-language-server`](https://github.com/UnwrittenFun/svelte-language-server/).

[Simon Holthausen](https://github.com/dummdidumm) and [Lyu, Wei-Da](https://github.com/jasonlyu123) have done great work improving the JavaScript and TypeScript introspection, including integrating [@halfnelson](https://github.com/halfnelson)'s [svelte2tsx](https://github.com/sveltejs/language-tools/tree/master/packages/svelte2tsx#svelte2tsx) which powers understanding the props on components in your codebase.


### Try today
orta marked this conversation as resolved.
Show resolved Hide resolved

The Svelte template has been extended with a script to convert it to a TypeScript project.

```bash
npx degit svelte/template
orta marked this conversation as resolved.
Show resolved Hide resolved
pngwn marked this conversation as resolved.
Show resolved Hide resolved
node scripts/updateTypeScriptVersion.js
Rich-Harris marked this conversation as resolved.
Show resolved Hide resolved
```

### Adding TypeScript support to your project
orta marked this conversation as resolved.
Show resolved Hide resolved

Before getting started, add the dependencies:

```bash
yarn add --dev svelte-preprocess @rollup/plugin-typescript @tsconfig/svelte svelte-check
npm install --save-dev svelte-preprocess @rollup/plugin-typescript @tsconfig/svelte svelte-check
```

##### 1. Compiling TypeScript

You first need to set up [`svelte-preprocess`](https://github.com/sveltejs/svelte-preprocess#svelte-preprocess) and [`@rollup/plugin-typescript`](https://github.com/rollup/plugins/tree/master/packages/typescript#rollupplugin-typescript) for the compiler:
orta marked this conversation as resolved.
Show resolved Hide resolved

When in a rollup project, this would mean:
orta marked this conversation as resolved.
Show resolved Hide resolved

```diff
kaisermann marked this conversation as resolved.
Show resolved Hide resolved
+ import preprocess from 'svelte-preprocess'
+ import typescript from '@rollup/plugin-typescript';

export default {
...,
plugins: [
svelte({
+ preprocess: autoPreprocess({ /* options */ })
orta marked this conversation as resolved.
Show resolved Hide resolved
}).
+ typescript({ sourceMap: !production }),
]
}
```

[Full instructions for other environments here](https://github.com/sveltejs/svelte-preprocess#usage)

To configure TypeScript, you will need to create a `tsconfig.json` in the root of your project:

```json
{
"extends": "@tsconfig/svelte/tsconfig.json",

"include": ["src/**/*"],
"exclude": ["node_modules/*", "__sapper__/*", "public/*"],
orta marked this conversation as resolved.
Show resolved Hide resolved
}
```

Your `include`/`exclude` may differ per project.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Your `include`/`exclude` may differ per project.
Your `include`/`exclude` may differ per project — these are defaults that should work across most Svelte projects.

Would this exclude files in src/node_modules in a Sapper project?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

src/node_modules - that's a wild path, but no - I don't think it would

@benmccann can you confirm, I figure you've already tried this

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've done limited testing since I'm still waiting for sveltejs/sapper#1222 to be reviewed. @babichjacob has actually probably tested more than I have. I've been using his templates for testing. Here's what he has: https://github.com/babichjacob/sapper-typescript-graphql-template/blob/5a78283059953749acfbb8d60430187646a58212/tsconfig.json#L16


##### 2. Editor Support

Any editor [using an LSP](https://langserver.org/#implementations-client) can be supported. The [VS Code](https://marketplace.visualstudio.com/items?itemName=svelte.svelte-vscode) extension has been our primary focus, but there is work in progress [on Atom](https://github.com/sveltejs/language-tools/pull/160), and Vim via [coc-svelte](https://github.com/coc-extensions/coc-svelte) has been updated with the latest LSP.

These editor extensions will improve your coding experience even if you only use JavaScript. The editor won't offer errors, but it will offer inference and refactoring tools. You can [add `// @check-js`](https://www.staging-typescript.org/docs/handbook/intro-to-js-ts.html) to the top of a `<script>` tag using JavaScript to get better error messages with no infra changes.

To switch a `<script>` to use TypeScript, use `<script lang="ts">` and that should be it. Hopefully you won't be seeing an ocean of red squiggles.

##### 3. CI Checks

Having red squiggles is great, well, kinda. On the long run though, you want to be able to verify that there are no errors in your code. To verify your project is error free, you can use the CLI tool [`svelte-check`](https://www.npmjs.com/package/svelte-check). It acts like an editor asking for errors against all of your `.svelte` files.

You can add the dependency to your project and then add it to CI.

```bash
❯ yarn svelte-check
orta marked this conversation as resolved.
Show resolved Hide resolved

Loading svelte-check in workspace: /Users/ortatherox/dev/svelte/example-app
Getting Svelte diagnostics...
====================================

/Users/ortatherox/dev/svelte/example-app/src/App.svelte:3:2
Error: Type '123' is not assignable to type 'string'. (ts)

====================================
svelte-check found 1 error
error Command failed with exit code 1.
```
Binary file added site/static/media/svelte-ts.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.