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

@vue/babel-preset-app

Package Overview
Dependencies
Maintainers
3
Versions
158
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vue/babel-preset-app

babel-preset-app for vue-cli

  • 4.4.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
279K
decreased by-52.9%
Maintainers
3
Weekly downloads
 
Created

What is @vue/babel-preset-app?

@vue/babel-preset-app is a Babel preset specifically designed for Vue.js applications. It provides a set of Babel plugins and configurations that are optimized for Vue.js development, ensuring compatibility and performance improvements.

What are @vue/babel-preset-app's main functionalities?

Automatic Polyfills

This feature automatically includes polyfills based on your target environments, ensuring that your Vue.js application works across different browsers.

{
  "presets": [
    ["@vue/babel-preset-app", {
      "useBuiltIns": "entry",
      "corejs": 3
    }]
  ]
}

Modern JavaScript Syntax

This feature allows you to use modern JavaScript syntax in your Vue.js application, which will be transpiled to be compatible with older browsers.

{
  "presets": [
    ["@vue/babel-preset-app", {
      "targets": {
        "esmodules": true
      }
    }]
  ]
}

Vue JSX Support

This feature enables support for JSX syntax in Vue.js components, allowing you to write components in a syntax similar to React.

{
  "presets": [
    ["@vue/babel-preset-app", {
      "jsx": true
    }]
  ]
}

Other packages similar to @vue/babel-preset-app

Keywords

FAQs

Package last updated on 12 Jun 2020

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