Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ek-esbuild-module

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ek-esbuild-module

#### Installation ```bash # yarn yarn add ek-esbuild-module

  • 0.0.1
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
4
Maintainers
1
Weekly downloads
 
Created
Source

ESBuild Nuxt Module

Installation
# yarn
yarn add ek-esbuild-module

# npm
npm install ek-esbuild-module
Usage
export default {
  buildModules: [
    // Esbuild module
    'ek-esbuild-module',
  ]
}
Custom Configuration
export default {
  buildModules: [
    // Esbuild module
    'ek-esbuild-module',
  ],

  // Nuxt config key to alter default configuration
  esbuild: {
    // @TODO debugger: boolean
    // Available targets: https://esbuild.github.io/api/#target
    esbuildLoaderOptions: {
      client: {
        target: 'es2015',
      },
      server: {
        target: 'node14',
      },
      modern: {
        target: 'es2015',
      },
    },
    esbuildMinifyOptions: {
      client: {
        target: 'es2015',
      },
      server: {
        target: 'node14',
      },
      modern: {
        target: 'es2015',
      },
    },
    modules: {
      esbuildLoader: boolean,
      esbuildMinifier: boolean,
    },
  },
}

FAQs

Package last updated on 16 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc