rollup-plugin-lwc-typescript

1.0.1 • Public • Published

rollup-plugin-lwc-typescript

Simple Rollup plugin to transform TypeScript files to JavaScript for Lightning Web Components.

Make sure to add it before the LWC rollup plugin.

import lwcTypescriptPlugin from 'rollup-plugin-lwc-typescript';
import lwcRollUpPlugin from "@lwc/rollup-plugin";
...
 
function rollupConfig() {
    return {
        input: path.resolve(__dirname, "components.js"),
        output: {
            file: path.join(__dirname, "build", "app.js"),
            format: "esm"
        },
        plugins: [
            lwcTypescriptPlugin(),
            lwcRollupPlugin({
                modules: "src/modules",
                stylesheetConfig: {
                    customProperties: { allowDefinition: true }
                }
            })
        ]
}
 

Read more about Lightning Web Components here.

Live App

If you want to see Lightning Web Components in action - check out https://recipes.lwc.dev.

Package Sidebar

Install

npm i rollup-plugin-lwc-typescript

Weekly Downloads

242

Version

1.0.1

License

MIT

Unpacked Size

2.45 kB

Total Files

3

Last publish

Collaborators

  • muenzpraeger