A pre processor for [Svelte-Native](https://github.com/halfnelson/svelte-native).
npm install svelte-native-preprocessorbind:text="{email}" to text="{email}" on:textChanged="{e => email = e.value}"
nativescript-webpack >= 5.0.0 add to your svelte.config.js
js
const svelteNativePreprocessor = require("./svelte-native-preprocessor");
module.exports = {
compilerOptions: {
namespace: 'foreign'
},
preprocess: [svelteNativePreprocessor() /, other preprocesser eg sveltePreprocessor() here /]
}
``