UNPKG

@storm-software/build-tools

Version:

A comprehensive set of tools for building and managing projects within a Storm workspace. Includes builders such as rollup, rolldown, tsup, and unbuild, along with various utilities.

22 lines (20 loc) 339 B
// src/plugins/swc.ts import { transform } from "@swc/core"; function swc() { return { name: "storm:swc", transform(code, filename) { return transform(code, { filename, jsc: { transform: { react: { runtime: "automatic" } } } }); } }; } export { swc };