Skip to content

Commit

Permalink
fix lint checks
Browse files Browse the repository at this point in the history
  • Loading branch information
smac89 committed Nov 21, 2023
1 parent 9d4c742 commit 8bf8b81
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"scripts": {
"watch": "ncc build src/index.ts --watch",
"build": "ncc build src/index.ts --license LICENSE --minify --out lib",
"lint": "ts-standard && tsc && tsc -p ./tests",
"lint": "tsc && tsc -p ./tests",
"format": "prettier --write .",
"test": "jest"
},
Expand Down
3 changes: 2 additions & 1 deletion tests/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"moduleResolution": "Node"
},
"include": [
"*.ts"
"*.ts",
"../index.d.ts"
]
}
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
},
"include": [
"src/**/*.ts",
"jest.config.ts"
"jest.config.ts",
"index.d.ts"
]
}

0 comments on commit 8bf8b81

Please sign in to comment.