lit-html-minifier-loader
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

Lit HTML Minifier Loader

Installation

npm i -D lit-html-minifier-loader
module: {
  rules: [
    {
      test: /\.element\.ts$/,
      use: [
        {
          loader: 'ts-loader',
        },
        // add this loader after ts-loader
        {
          loader: 'lit-html-minifier-loader',
          options: {
            debug: true,
          }
        }
      ],
      include: [
        path.join(__dirname, './src'),
      ]
    },
    // ...
  ],
  /// 
}

/lit-html-minifier-loader/

    Package Sidebar

    Install

    npm i lit-html-minifier-loader

    Weekly Downloads

    26

    Version

    1.0.0

    License

    none

    Unpacked Size

    2.23 kB

    Total Files

    4

    Last publish

    Collaborators

    • hungtcs