Skip to content

Latest commit

 

History

History
46 lines (34 loc) · 677 Bytes

File metadata and controls

46 lines (34 loc) · 677 Bytes

babel-plugin-transform-es2015-template-literals

Compile ES2015 template literals to ES5

Installation

$ npm install babel-plugin-transform-es2015-template-literals

Usage

Via .babelrc (Recommended)

.babelrc

// without options
{
  "plugins": ["transform-es2015-template-literals"]
}

// with options
{
  "plugins": [
    ["transform-es2015-template-literals", {
      "loose": true,
      "spec": true
    }]
  ]
}

Via CLI

$ babel --plugins transform-es2015-template-literals script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["transform-es2015-template-literals"]
});