rollup-plugin-swc3
Advanced tools
Changelog
0.4.0
id
to swc's filename
option.
.swcrc
, and also enables some other swc's functionality.ts/.tsx
to .mjs/.js/.cjs/.jsx
.
.js/.jsx
extension for TypeScript with "moduleResolution": "Node16"
. So rollup-plugin-swc will now try all possible extensions.import Foo from 'foo.jsx'
, rollup-plugin-swc will search for foo.ts
, foo.tsx
, foo.mjs
, foo.js
, foo.jsx
.Changelog
0.3.0
transform
phase.
renderChunk
phase, which is a one-pass process, resulting in even faster build performance.peerDependencies
of swc has been updated to >=1.2.165
. You will need to bump the version of swc to 1.2.165 or higher after this release.Changelog
0.2.0
baseUrl
and paths
from your tsconfig.json
(and jsconfig.json
).
@rollup/plugin-node-resolve
).Changelog
0.1.2
jsconfig.json
as well
jsconfig.json
will be ignored if tsconfig.json
and jsconfig.json
both exists.Changelog
0.1.1
.npmignore
to reduce the size of the package.deepmerge
to merge plugin options config with your given tsconfig.json
.