コード例
html = html +
`<div class="m_main-visual__thumbnail ${is_current}" id="image-index-${index}" data-image-index="${index}">
<a href="javascript:void(0);"><img src="${elm}" alt=""></a>
</div>`;
[package.json]
︙
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
︙
[webpack.config.js]
︙
module: {
rules: [{
test: /\.js$/, // files ending with .js
exclude: /node_modules/, // exclude the node_modules directory
loader: "babel-loader" // use this (babel-core) loader
}
],
}
︙
[.babelrc]
{
"presets": ["es2015"]
}
最後までお読みいただき、ありがとうございました。
ご意見などありましたら@hippohackへDMをお願いいたします。