chore(pockethost): add type checking

This commit is contained in:
Ben Allfree 2024-06-05 17:55:19 -07:00
parent a86b2efaa4
commit 9a968a7c3b
2 changed files with 2 additions and 0 deletions

View File

@ -13,6 +13,7 @@
"scripts": {
"check:types": "concurrently 'pnpm:check:types:*'",
"check:types:dashboard": "cd packages/dashboard && pnpm check:types",
"check:types:pockethost": "cd packages/pockethost && pnpm check:types",
"check:types:common": "cd packages/common && pnpm check:types",
"lint": "prettier -c \"./**/*.{ts,js,cjs,svelte,json}\"",
"lint:fix": "prettier -w \"./**/*.{ts,js,cjs,svelte,json}\"",

View File

@ -13,6 +13,7 @@
"pockethost": "src/cli/index.ts"
},
"scripts": {
"check:types": "tsc --noEmit ",
"dev": "NODE_ENV=development dotenvx run -f ../../.env -- tsx ./src/cli/index.ts",
"start": "dotenvx run -f ../../.env -- tsx ./src/cli/index.ts",
"mail": "dotenvx run -f ../../.env -- tsx ./src/cli/sendmail.ts"