Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
Fix typecheck issues
Browse files Browse the repository at this point in the history
  • Loading branch information
maso7 committed Feb 28, 2024
1 parent 6241e6e commit 23fb0b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/current/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export async function toolsCurrent(): Promise<void> {
const directory = core.getInput("directory", { required: false });
let saveTo = core.getInput("save_to", { required: false });
const save = core.getInput("save", { required: false });
const options = {};
const options: exec.ExecOptions = {};
let stdOut = "";

options.listeners = {
Expand Down
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true
"strict": true,
"target": "es2015",
"moduleResolution": "node"
},
"exclude": ["install", "node_modules", "plugin-test", "plugins-add", "setup"]
}

0 comments on commit 23fb0b8

Please sign in to comment.