diff --git a/package.json b/package.json index 7e9cd44..a062ac5 100644 --- a/package.json +++ b/package.json @@ -45,7 +45,9 @@ }, "scripts": { "prepare": "npm run build", - "build": "rollup -c && npm run tsc", + "bundle": "rollup -c", + "build": "npm run bundle && npm run tsc", + "build:debug": "npm run bundle -- -m && npm run tsc", "lint": "eslint .", "tsc": "tsc", "tsd": "tsd", diff --git a/rollup.config.js b/rollup.config.js index d3fc0ff..7348e60 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -3,7 +3,6 @@ export default { treeshake: false, output: { format: "cjs", - file: "dist/eslint-visitor-keys.cjs", - sourcemap: true + file: "dist/eslint-visitor-keys.cjs" } };