Skip to content

Commit 6193eff

Browse files
committed
chore: add verify script
1 parent 4ff004e commit 6193eff

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@
4545
"release": "bumpp",
4646
"start": "tsx src/index.ts",
4747
"test": "vitest",
48-
"typecheck": "tsc --noEmit"
48+
"typecheck": "tsc --noEmit",
49+
"verify": "pnpm run lint && pnpm run test --run && pnpm run typecheck"
4950
},
5051
"peerDependencies": {
5152
"@types/markdown-it": "*",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
"compilerOptions": {
33
"target": "es2018",
44
"lib": ["esnext"],
5-
"types": ["node", "vite/client"],
65
"module": "esnext",
76
"moduleResolution": "node",
87
"ignoreDeprecations": "6.0",
98
"resolveJsonModule": true,
9+
"types": ["node", "vite/client"],
1010
"strict": true,
1111
"strictNullChecks": true,
1212
"esModuleInterop": true,

0 commit comments

Comments
 (0)