We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c85ea8 commit 37f6b17Copy full SHA for 37f6b17
package.json
@@ -74,6 +74,7 @@
74
"lint": "eslint .",
75
"fixlint": "npm run lint -- --fix",
76
"build": "rollup -c rollup.config.js",
77
+ "build:debug": "npm run build -- -m",
78
"update-version": "node tools/update-version.js",
79
"pretest": "npm run build",
80
"prepublishOnly": "npm run update-version && npm run build",
rollup.config.js
@@ -8,8 +8,7 @@ export default {
8
treeshake: false,
9
output: {
10
file: "dist/espree.cjs",
11
- format: "cjs",
12
- sourcemap: true
+ format: "cjs"
13
},
14
plugins: [commonjs(), resolve(), json()]
15
};
0 commit comments