Often, the name of the class will be the same as the name of the value it depends on:

<div class:big={big}>
	<!-- ... -->
</div>

In those cases we can use a shorthand form:

<div class:big>
	<!-- ... -->
</div>
App.svelte

Console

Compiler options

result = svelte.compile(source, {
generate:
});