Détail du package

vite-plugin-escheck

songjiachao72MIT0.0.6

Check all the vite generated files to find whether the code match the selected ES version. If doesn't match the plugin will thorw an error and stop vite emit files.

vite, escheck, plugin

readme

vite-plugin-escheck

vite-plugin-escheck

NPM Version NPM Downloads License

📖 Introduction

Check all the vite generated files to find whether the code match the selected ES version. If doesn't match the plugin will thorw an error and stop vite emit files.

Demo

📦 Installation

yarn add -D vite-plugin-escheck

🛠 Usage

// vite.config.ts
import ESCheck from 'vite-plugin-escheck'
export default defineConfig({
  plugins: [vue(), ESCheck({
     // type ecmaVersion = 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | 2022 | 'latest'
    ecmaVersion:'latest' // optional, default 'latest'
  })]
})