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 }), ]