Simplify build script (#209)

This commit is contained in:
Steven 2022-06-06 22:50:32 -04:00 committed by GitHub
parent 0b76def1f5
commit e77be57549
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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",

View File

@ -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;