From dbb1901556998dc9e5d507bc41e0a176646bffdd Mon Sep 17 00:00:00 2001 From: Orta Date: Fri, 17 Jul 2020 16:35:03 -0400 Subject: [PATCH] Handle feedback --- site/content/blog/2020-06-04-svelte-and-typescript.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/content/blog/2020-06-04-svelte-and-typescript.md b/site/content/blog/2020-06-04-svelte-and-typescript.md index e40b40e5ee..a652386651 100644 --- a/site/content/blog/2020-06-04-svelte-and-typescript.md +++ b/site/content/blog/2020-06-04-svelte-and-typescript.md @@ -45,7 +45,7 @@ The Svelte template has been extended with a script to convert it to a TypeScrip ```bash npx degit sveltejs/template svelte-app cd svelte-app -node scripts/updateTypeScriptVersion.js +node scripts/setupTypeScript.js ``` ### Adding TypeScript support to your project @@ -71,7 +71,7 @@ export default { ..., plugins: [ svelte({ -+ preprocess: autoPreprocess({ /* options */ }) ++ preprocess: autoPreprocess({ /* options */ }); }). + typescript({ sourceMap: !production }), ]