A parcel plugin to compile your Surplus JSX views.
$ npm install --save-dev parcel-plugin-surplus
To work with TypeScript it's necessary to add in your tsconfig.json the jsxFactory
prop:
{
"compilerOptions": {
...
"jsx": "preserve",
"jsxFactory": "Surplus",
}
}