Skip to content

Commit

Permalink
fix eslint error
Browse files Browse the repository at this point in the history
  • Loading branch information
fungairino committed Nov 13, 2024
1 parent 8112e56 commit 79cfd1b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions libraries/utils/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
module.exports = {
root: true,
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint"],
overrides: [
{
files: ["**/*.ts", "**/*.tsx"],
Expand Down
2 changes: 1 addition & 1 deletion libraries/utils/src/debugUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function getInvalidPath(
}
}

throw new Error("Expected invalid path");
return { invalidPath: "", values: {} };
}

/**
Expand Down
2 changes: 1 addition & 1 deletion libraries/utils/tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"emitDeclarationOnly": false,
"types": ["node"]
},
"include": ["src/**/*.ts"],
"include": ["src/**/*.ts", "src/**/*.d.ts"],
"references": [],
"exclude": [
"jest.config.ts",
Expand Down

0 comments on commit 79cfd1b

Please sign in to comment.