AngularJS wrapper for svelte components. This is an angularjs directive; put it in your directives folder.
To use this in any angularjs template, just invoke like so:
<angular-to-svelte
dynamic-attrs='[
"attr1",
"attr2"
]'
svelte-component='FancySvelteComponent'>
</angular-to-svelte>
How to use
$scope.FancySvelteComponent = FancySvelteComponent;
export let attr1;
export let attr2;
export let someOtherAttr;
export let someFunctionInAngularThatYouCanTotallyJustCallInSvelte
Hope this is helpful; certainly this is a very rough early effort and has some limitations.