This commit is contained in:
2024-11-13 01:31:51 -06:00
parent e47540ea4d
commit 2fc47b2554
8 changed files with 888 additions and 99 deletions

View File

@@ -11,16 +11,18 @@
"./ecgsyn.wasm": "./dist/ecgsyn.wasm"
},
"scripts": {
"build": "cmake --build build && tsc && cp -f build/ecgsyn.wasm ./dist",
"build": "cmake --build cmake-build-release-wasm && tsc && cp -f cmake-build-release-wasm/ecgsyn.wasm ./dist",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write \"*.{js,ts,json,css,yml,yaml}\" \"**/*.{js,ts,json,css,yml.yaml}\"",
"serve": "http-server -c-1",
"test": "vitest"
"test": "vitest",
"watch": "tsc -w"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"http-server": "^14.1.1",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"