jsonpath-wasm 성능비교 추가

This commit is contained in:
freestrings
2019-03-08 17:27:24 +09:00
parent 873eebd157
commit ba57ae0ea5
25 changed files with 6210 additions and 29 deletions

View File

@ -0,0 +1,14 @@
const CopyWebpackPlugin = require("copy-webpack-plugin");
const path = require('path');
module.exports = {
entry: "./bootstrap.js",
output: {
path: path.resolve(__dirname, "dist"),
filename: "bootstrap.js",
},
mode: "development",
plugins: [
new CopyWebpackPlugin(['index.html'])
]
};