Fix client tsc check

This commit is contained in:
John Livingston 2023-08-01 16:09:33 +02:00
parent 5f6a47fd24
commit 6184205e36
No known key found for this signature in database
GPG Key ID: B17B5640CE66CDBC
2 changed files with 11 additions and 1 deletions

View File

@ -1,5 +1,15 @@
# Changelog
## XXX (Unreleased Yet)
### New Features
* ...
### Minor changes and fixes
* Some code refactoring.
## 7.2.1
### Minor changes and fixes

View File

@ -90,7 +90,7 @@
"build:prosody": "bash build-prosody.sh",
"build:images": "mkdir -p dist/client/images && npx svgo -f assets/images/ -o dist/client/images/",
"build:avatars": "mkdir -p dist/server/avatars && ./build-avatars.js",
"check:client:tsc": "npx tsc --p client/ --noEmit --skipLibCheck",
"check:client:tsc": "npx tsc --p client/ --noEmit --skipLibCheck && npx tsc --p conversejs/ --noemit --skipLibCheck",
"build:client": "node ./build-client.js --mode=production",
"build:server": "npx tsc --build server/tsconfig.json",
"build:serverconverse": "mkdir -p dist/server/conversejs && cp conversejs/index.html dist/server/conversejs/",