Created
April 2, 2018 14:20
-
-
Save cometkim/e52a77299b61a9f488943d233c11101a to your computer and use it in GitHub Desktop.
노드 프로젝트 바벨7 설정
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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