Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions packages/template/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,19 @@ Download https://github.com/pyoner/svelte-typescript/archive/master.zip and extr

*Note that you will need to have [Node.js](https://nodejs.org) installed.*

### For VSCode users

Regardless of your OS, if you're using VSCode as your IDE for your Svelte project, you also need to do an extra step in order to have full language support with [svelte-code extension](https://github.com/UnwrittenFun/svelte-vscode).

Create a `svelte.config.js` file in the root of your project with the following content:

```
const { preprocess } = require("@pyoner/svelte-ts-preprocess")

module.exports = {
preprocess: preprocess()
}
```

## Get started

Expand Down