mirror of
https://github.com/swc-project/swc.git
synced 2024-12-02 02:58:48 +03:00
11 lines
201 B
JavaScript
11 lines
201 B
JavaScript
const path = require("path");
|
|
|
|
module.exports = {
|
|
entry: "./index.js",
|
|
output: {
|
|
path: path.resolve(__dirname, "dist"),
|
|
filename: "index.js",
|
|
},
|
|
mode: "development",
|
|
};
|