Skip to content

Instantly share code, notes, and snippets.

@cometkim
Created April 2, 2018 14:20
Show Gist options
  • Save cometkim/e52a77299b61a9f488943d233c11101a to your computer and use it in GitHub Desktop.
Save cometkim/e52a77299b61a9f488943d233c11101a to your computer and use it in GitHub Desktop.
노드 프로젝트 바벨7 설정
module.exports = {
presets: [
["@babel/env", {
targets: {
node: "current"
},
useBuiltIns: "usage",
}],
],
plugins: [
["module-resolver",{
"root": ["./src"]
}],
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment