Skip to content

Commit

Permalink
fix: check command
Browse files Browse the repository at this point in the history
  • Loading branch information
skarab42 committed Jul 13, 2022
1 parent 47cf3c9 commit bb6d66d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"prepare": "pnpm up-hooks",
"build": "tsup",
"watch": "nodemon ./src/program/index.ts",
"check": "tsc -p tsconfig.check.json",
"check": "tsc -p ./tsconfig.check.json",
"format": "prettier . --write --ignore-path .gitignore",
"lint": "eslint . --fix --ext .js,.cjs,.ts --ignore-path .gitignore",
"test": "pnpm check && pnpm lint -- --max-warnings=0",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.check.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"noEmit": true,
"lib": ["DOM", "ES2020"]
"lib": ["ES2020"]
},
"include": ["src"]
}

0 comments on commit bb6d66d

Please sign in to comment.