Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
Exclude http-server from eslint and tsconfig
Sebastian Martinez committed 1 year ago
commit 23107912af443c486e65a7777196141cb2986384
parent 2ee8bae82efafa6db5ffd50815543600d896a7b6
2 files changed +7 -2
modified eslint.config.js
@@ -133,6 +133,11 @@ export default [
    },
  },
  {
-
    ignores: ["node_modules/**/*", "build/**/*", "public/**/*"],
+
    ignores: [
+
      "node_modules/**/*",
+
      "build/**/*",
+
      "public/**/*",
+
      "http-server/**/*",
+
    ],
  },
];
modified tsconfig.json
@@ -1,7 +1,7 @@
{
  "extends": "@tsconfig/svelte/tsconfig.json",
  "include": ["src", "tests", "http-client", "./*.js", "./*.ts"],
-
  "exclude": ["node_modules/*"],
+
  "exclude": ["node_modules/*", "http-server/*"],
  "compilerOptions": {
    "noEmit": true,
    "target": "es2020",