Skip to content

Commit 48d1f57

Browse files
committed
chore: typecheck
1 parent 5414ea1 commit 48d1f57

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,12 @@
3434
"sideEffects": false,
3535
"scripts": {
3636
"build": "rollup -c",
37-
"dev": "npm run build -- --watch",
37+
"dev": "nr build --watch",
3838
"lint": "eslint .",
3939
"prepublishOnly": "npm run build",
4040
"release": "bumpp --commit --push --tag && npm publish",
4141
"start": "esno src/index.ts",
42+
"typecheck": "tsc --noEmit",
4243
"test": "vitest"
4344
},
4445
"devDependencies": {

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"esModuleInterop": true,
88
"strict": true,
99
"strictNullChecks": true,
10-
"resolveJsonModule": true
10+
"resolveJsonModule": true,
11+
"skipLibCheck": true
1112
}
1213
}

0 commit comments

Comments
 (0)