Skip to content

Commit

Permalink
Exclude http-server from eslint and tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastinez committed Jun 6, 2024
1 parent 8ba839e commit 8662f68
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,11 @@ export default [
},
},
{
ignores: ["node_modules/**/*", "build/**/*", "public/**/*"],
ignores: [
"node_modules/**/*",
"build/**/*",
"public/**/*",
"http-server/**/*",
],
},
];
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 8662f68

Please sign in to comment.