vite-plugin-escheck
v0.0.6
Published
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.
Downloads
81
Readme
vite-plugin-escheck
📖 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.
📦 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'
})]
})