SWC Plugin HTM • A swc plugin for htm literals transpiling. Highly inspired by its babel counterpart babel-plugin-htm.
$ npm i @chialab/swc-plugin-html -D
$ yarn add @chialab/swc-plugin-html -D
import swc from '@swc/core';
import { plugin as htmPlugin } from '@chialab/swc-plugin-htm';
swc
.transform("source code", {
plugin: htmPlugin({ tag: 'html', pragma: 'h' }),
})
.then((output) => {
output.code; // transformed code
output.map; // source map (in string)
});
SWC Plugin HTM is released under the MIT license.