From 071847a0eae8ac6de487fce946cb25a4ce6a74c5 Mon Sep 17 00:00:00 2001 From: Dustin Wyatt Date: Sun, 5 Dec 2021 17:47:34 -0600 Subject: [PATCH] Clarify that VS Code isn't the only supported IDE First time I ever looked through the tutorial the wording here made it seem like the only way to get a great IDE/Svelte tooling experience was with VS Code. Because of that I just didn't bother learning Svelte at the time. Always good to be as inclusive as possible! --- site/content/tutorial/01-introduction/07-making-an-app/text.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/tutorial/01-introduction/07-making-an-app/text.md b/site/content/tutorial/01-introduction/07-making-an-app/text.md index 3f40637997..d3e4a895b0 100644 --- a/site/content/tutorial/01-introduction/07-making-an-app/text.md +++ b/site/content/tutorial/01-introduction/07-making-an-app/text.md @@ -14,7 +14,7 @@ First, you'll need to integrate Svelte with a build tool. There are officially m Don't worry if you're relatively new to web development and haven't used these tools before. We've prepared a simple step-by-step guide, [Svelte for new developers](blog/svelte-for-new-developers), which walks you through the process. -You'll also want to configure your text editor. If you're using VS Code, install the [Svelte extension](https://marketplace.visualstudio.com/items?itemName=svelte.svelte-vscode), otherwise follow [this guide](blog/setting-up-your-editor) to configure your text editor to treat `.svelte` files the same as `.html` for the sake of syntax highlighting. +You'll also want to configure your text editor. If you're using VS Code, install the [Svelte extension](https://marketplace.visualstudio.com/items?itemName=svelte.svelte-vscode). If you're using a JetBrains IDE, install their [Svelte plugin](https://plugins.jetbrains.com/plugin/12375-svelte). Other editors may have their own support for Svelte. Otherwise, follow [this guide](blog/setting-up-your-editor) to configure your text editor to treat `.svelte` files the same as `.html` for the sake of syntax highlighting. Then, once you've got your project set up, using Svelte components is easy. The compiler turns each component into a regular JavaScript class — just import it and instantiate with `new`: