fix: add --build flag to tsc commands (#40)

This commit is contained in:
Brandon Keiji
2025-04-18 16:14:20 -07:00
committed by GitHub
parent 383b917784
commit 2a850ed051
3 changed files with 7 additions and 3 deletions

View File

@@ -5,7 +5,7 @@
"type": "module",
"main": "src/index.js",
"scripts": {
"build": "tsc && cp package.json dist/",
"build": "tsc --build && cp package.json dist/",
"clean": "rm -rf dist",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write ."