Skip to content

Commit

Permalink
Add tsc lint step
Browse files Browse the repository at this point in the history
  • Loading branch information
askoufis committed Nov 11, 2024
1 parent 057a699 commit 39dcb59
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"lint": "pnpm run '/lint:.*/'",
"lint:eslint": "eslint .",
"lint:prettier": "prettier . --list-different",
"lint:tsc": "tsc",
"release": "changeset publish",
"version": "changeset version"
},
Expand Down
6 changes: 5 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
{
"extends": "@tsconfig/node20/tsconfig.json"
"extends": "@tsconfig/node20/tsconfig.json",
"compilerOptions": {
"noEmit": true
},
"files": ["index.d.ts"]
}

0 comments on commit 39dcb59

Please sign in to comment.