mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 09:30:31 +03:00
Merge pull request #779 from shlinkio/feature/tweak-ts
Added --noEmit to tsc as part of production build
This commit is contained in:
commit
d6d237fc52
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@
|
|||
"lint:css:fix": "npm run lint:css -- --fix",
|
||||
"lint:js:fix": "npm run lint:js -- --fix",
|
||||
"start": "vite serve --host=0.0.0.0",
|
||||
"build": "tsc && vite build && node scripts/replace-version.mjs",
|
||||
"build": "tsc --noEmit && vite build && node scripts/replace-version.mjs",
|
||||
"build:dist": "npm run build && node scripts/create-dist-file.mjs",
|
||||
"build:serve": "serve -p 5000 ./build",
|
||||
"test": "jest --env=jsdom --colors",
|
||||
|
|
Loading…
Reference in a new issue