프론트엔드-코드/Node.js

CommonJS

sdafdq 2023. 9. 4. 14:26

commonjs는 뭔가 표준.. 하기 위해 정해놓은 것 인데,

ES5가 commonjs 기반으로 만들어졌다고 한다.

 

플러그인 설정파일은 commonjs로 코딩되어 져야 한다.

 

 

module.exports = {
  presets : ["@babel/preset-env"],
  plugins : ["@babel/plugin-transform-runtime"]
}

 

const autoprefixer = require('autoprefixer');
module.exports = {
  plugins : [
    autoprefixer
  ]
}

이게 module.exports가 commonjs 문법이다.

 

최신버전은 @import 로쓴다.