Change file extension of rollup config to .js

This commit is contained in:
Nicola Krumschmidt
2020-12-04 02:55:34 +01:00
parent 1ab1b3b268
commit fc96cec3a9
2 changed files with 2 additions and 2 deletions

View File

@@ -27,8 +27,8 @@
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc --module commonjs && rollup -c rollup.config.ts",
"start": "rollup -c rollup.config.ts -w",
"build": "tsc --module commonjs && rollup -c rollup.config.js",
"start": "rollup -c rollup.config.js -w",
"prepublishOnly": "npm run build",
"lint": "eslint \"src/**/*.ts\""
},