summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2023-11-12 00:56:52 -0500
committerseth <[email protected]>2023-11-12 00:56:52 -0500
commitfe72f2701ae4a4338981fd19c39008985100ddb1 (patch)
treea843d4e301996d2d610be4e34e257573ade5bb0b
parent2e64b8579fed604306958b89271ad068df2f54ce (diff)
chore: disable js & tidy scripts
-rw-r--r--package.json5
-rw-r--r--tsconfig.json3
2 files changed, 2 insertions, 6 deletions
diff --git a/package.json b/package.json
index e2fe397..9e8f7c7 100644
--- a/package.json
+++ b/package.json
@@ -4,11 +4,8 @@
"type": "module",
"private": true,
"scripts": {
- "dev": "pnpm run \"/dev:.*/\"",
- "dev:wrangler": "wrangler pages dev dist --live-reload",
- "dev:esbuild": "tsx watch build.ts",
+ "dev": "pnpm build && wrangler pages dev dist --live-reload",
"build": "tsx build.ts",
- "deploy": "pnpm build && wrangler pages publish dist",
"lint": "tsc && eslint .",
"fmt": "prettier --write ."
},
diff --git a/tsconfig.json b/tsconfig.json
index 10684d7..776e75f 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -8,8 +8,7 @@
"types": ["@cloudflare/workers-types", "@types/node"],
"resolveJsonModule": true,
- "allowJs": true,
- "checkJs": false,
+ "allowJs": false,
"noEmit": true,
"isolatedModules": true,