| node_modules/ | |||||
| node_modules/ | |||||
| dist/ |
| "description": "", | "description": "", | ||||
| "main": "index.js", | "main": "index.js", | ||||
| "scripts": { | "scripts": { | ||||
| "test": "echo \"Error: no test specified\" && exit 1" | |||||
| "test": "echo \"Error: no test specified\" && exit 1", | |||||
| "build": "webpack" | |||||
| }, | }, | ||||
| "repository": { | "repository": { | ||||
| "type": "git", | "type": "git", |
| console.log('hello world') |
| const path = require("path"); | |||||
| module.exports = { | |||||
| mode: "development", | |||||
| entry: "./src/index.js", | |||||
| output: { | |||||
| filename: "main.js", | |||||
| path: path.resolve(__dirname,"./dist") | |||||
| } | |||||
| } |