Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. module.exports = {
  2. sourceMaps: 'inline',
  3. retainLines: true,
  4. presets: [
  5. [
  6. '@babel/preset-env',
  7. {
  8. targets: {
  9. node: 'current',
  10. },
  11. },
  12. ],
  13. ],
  14. plugins: [
  15. '@babel/plugin-proposal-class-properties',
  16. '@babel/plugin-proposal-optional-chaining',
  17. '@babel/plugin-proposal-nullish-coalescing-operator',
  18. ],
  19. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement