Handle feedback

pull/5101/head
Orta 5 years ago
parent 0d0fabb284
commit dbb1901556

@ -45,7 +45,7 @@ The Svelte template has been extended with a script to convert it to a TypeScrip
```bash ```bash
npx degit sveltejs/template svelte-app npx degit sveltejs/template svelte-app
cd svelte-app cd svelte-app
node scripts/updateTypeScriptVersion.js node scripts/setupTypeScript.js
``` ```
### Adding TypeScript support to your project ### Adding TypeScript support to your project
@ -71,7 +71,7 @@ export default {
..., ...,
plugins: [ plugins: [
svelte({ svelte({
+ preprocess: autoPreprocess({ /* options */ }) + preprocess: autoPreprocess({ /* options */ });
}). }).
+ typescript({ sourceMap: !production }), + typescript({ sourceMap: !production }),
] ]

Loading…
Cancel
Save