mirror of
https://github.com/swc-project/swc.git
synced 2024-11-30 15:23:33 +03:00
10 lines
183 B
JavaScript
10 lines
183 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
entry: "./index.js",
|
|
output: {
|
|
path: path.resolve(__dirname, "dist"),
|
|
filename: "index.js",
|
|
},
|
|
mode: "development"
|
|
}; |