A Parcel 2 transformer for Svelte 3.
npm install parcel-transformer-svelte -D
After this you should configure in .parcelrc
the transformation for Svelte files:
{
"extends": ["@parcel/config-default"],
"transformers": {
"*.svelte": ["parcel-transformer-svelte"]
}
}
You can change Svelte options though a .svelterc
, svelte.config.js
file or svelte
field
in package.json
.
For documentation on which options you can use look at the official svelte docs.
When using svelte without preprocessors, you can use .svelterc
to configure.
This has caching benefits that are not possible with svelte.config.js
;
however, it is not possible to configure preprocessors without using the
javascript config.
// Options used by svelte.compile
compilerOptions: {
...
},
// Preprocessors for svelte.preprocess
preprocessors: {
...
}
MIT License