From e77be575492b98e80b71e430c962b1c121feff23 Mon Sep 17 00:00:00 2001 From: Steven Date: Mon, 6 Jun 2022 22:50:32 -0400 Subject: [PATCH] Simplify build script (#209) --- package.json | 2 +- web/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index af3c3ee..3d4616f 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "node": "14.x" }, "scripts": { - "build": "tsc -p api/tsconfig.json && tsc -p web/tsconfig.json" + "build": "tsc -p web/tsconfig.json" }, "dependencies": { "chrome-aws-lambda": "7.0.0", diff --git a/web/index.ts b/web/index.ts index d28bfdf..aaf0f25 100644 --- a/web/index.ts +++ b/web/index.ts @@ -1,4 +1,4 @@ -import { ParsedRequest, Theme, FileType } from '../api/_lib/types'; +import type { ParsedRequest, Theme, FileType } from '../api/_lib/types'; const { H, R, copee } = (window as any); let timeout = -1;