Skip to content

Commit

Permalink
chore: typecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Jul 11, 2024
1 parent e129b9d commit f88e294
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@
"dev": "tsup src/*.ts --watch src",
"lint": "eslint .",
"lint:fix": "nr lint --fix",
"typecheck": "tsc",
"play": "npm -C playground run dev",
"prepublishOnly": "nr build",
"release": "bumpp && pnpm publish",
Expand Down
13 changes: 11 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@
"resolveJsonModule": true,
"strict": true,
"strictNullChecks": true,
"esModuleInterop": true
}
"noEmit": true,
"esModuleInterop": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true
},
"exclude": [
"test/fixtures",
"test/fixtures-*",
"examples",
"playground"
]
}

0 comments on commit f88e294

Please sign in to comment.