aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-06-17 19:49:00 +0300
committerValentin Popov <info@valentineus.link>2020-06-17 19:49:00 +0300
commit65cf95c441aaf9789e00ad68ba0b5fd2bbda4501 (patch)
treeba3a98435ff743397a477c33a47511d442787bf8
parent2c62da8decad63e1ee4b4cbc1e5ac88e42032594 (diff)
downloadeslint-config-65cf95c441aaf9789e00ad68ba0b5fd2bbda4501.tar.xz
eslint-config-65cf95c441aaf9789e00ad68ba0b5fd2bbda4501.zip
Recovered build
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r--.gitignore8
-rw-r--r--package-lock.json6
-rw-r--r--package.json1
-rw-r--r--rollup.config.js3
4 files changed, 10 insertions, 8 deletions
diff --git a/.gitignore b/.gitignore
index 232ea35..507d360 100644
--- a/.gitignore
+++ b/.gitignore
@@ -198,9 +198,5 @@ $RECYCLE.BIN/
### Project ###
# Resulting code
-/_tslib-*.js
-/default-*.js
-/javascript.js
-/typescript.js
-/vue-javascript.js
-/vue-typescript.js
+/*.js
+
diff --git a/package-lock.json b/package-lock.json
index 88af739..88bd254 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -90,6 +90,12 @@
"integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=",
"dev": true
},
+ "@types/node": {
+ "version": "14.0.13",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-14.0.13.tgz",
+ "integrity": "sha512-rouEWBImiRaSJsVA+ITTFM6ZxibuAlTuNOCyxVbwreu6k6+ujs7DfnU9o+PShFhET78pMBl3eH+AGSI5eOTkPA==",
+ "dev": true
+ },
"@types/normalize-package-data": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz",
diff --git a/package.json b/package.json
index 6ecf7d1..2471197 100644
--- a/package.json
+++ b/package.json
@@ -13,6 +13,7 @@
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-typescript": "^4.1.2",
+ "@types/node": "^14.0.13",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
diff --git a/rollup.config.js b/rollup.config.js
index d22bb39..4f5794e 100644
--- a/rollup.config.js
+++ b/rollup.config.js
@@ -1,6 +1,6 @@
-import { terser } from "rollup-plugin-terser";
import json from "@rollup/plugin-json";
import typescript from "@rollup/plugin-typescript";
+import { terser } from "rollup-plugin-terser";
module.exports = {
input: {
@@ -25,7 +25,6 @@ module.exports = {
output: {
comments: false,
},
- sourcemap: false,
}),
],
};