Skip to content

Commit 4ff1868

Browse files
committed
chore: add typecheck task
1 parent ae9792a commit 4ff1868

File tree

3 files changed

+83
-9
lines changed

3 files changed

+83
-9
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@
7878
"lint:eslint": "eslint . --cache",
7979
"lint:knip": "knip",
8080
"lint:prettier": "prettier . --check --experimental-cli",
81+
"lint:typecheck": "tsc --noEmit --diagnostics",
8182
"play:browser": "pnpm run --filter example-browser dev",
8283
"play:bun": "pnpm run --filter example-bun dev",
8384
"play:deno": "pnpm run --filter example-deno dev",

pnpm-lock.yaml

Lines changed: 80 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,5 +116,6 @@
116116
/* Completeness */
117117
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
118118
"skipLibCheck": true /* Skip type checking all .d.ts files. */
119-
}
119+
},
120+
"exclude": ["playground", "deno"]
120121
}

0 commit comments

Comments
 (0)