Home > Article > Web Front-end > How to use file preprocessors in projects
This time I will show you how to use the file preprocessor in the project, and what are the precautions for using the file preprocessor in the project. The following is a practical case, let's take a look.
Installation
We need to use babel-loader babel-core babel-preset
Compatible version: webpack 3.x | babel-loader 8 .x | babel 7.x
npm install babel-loader@8.0.0-beta.0 @babel/core @babel/preset-env webpack webpack 3.x babel-loader 7.x | babel 6.x
Using
Let’s start with a little chestnut:
var htmlWebpackPlugin = require('html-webpack-plugin') const path = require('path') module.exports = { mode: 'development', entry: './src/app.js', output: { filename: 'js/bundle.js', path: path.resolve(__dirname, 'dist') }, module: { rules: [ { test: /\.js$/, exclude: /(node_modules|bower_components)/, // (不处理node_modules 和 bower_components下的js文件) 优化处理加快速度 use: { loader: 'babel-loader', options: { // options选项中的presets设置的就是当前js的版本 presets: ['@babel/preset-env'] } } } ] }, plugins: [ new htmlWebpackPlugin({ template: 'index.html', inject: 'body', filename: 'index.html' }) ] }
You can use the options attribute to pass options to the loader.
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!
Recommended reading:
node makes a personalized command line tool
JS numerical type array deduplication
The above is the detailed content of How to use file preprocessors in projects. For more information, please follow other related articles on the PHP Chinese website!