1.0.1 • Published 8 months ago

@lipemat/js-boilerplate-svelte v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

js-boilerplate-svelte

Svelte extension for @lipemat/js-boilerplate

Project Setup

Unless you project imports the SvelteComponent already, you'll get this TS error:

TS2307: Cannot find module '.svelte' or its corresponding type declarations.

This may be fixed by adding the following module definition to your type folder:

declare module '*.svelte' {
	// @ts-ignore
	export {SvelteComponent as default} from 'svelte';
}