refactor: change backend to typescript and update types and variables accordingly

This commit is contained in:
2026-07-08 10:54:07 +02:00
parent 36ec8da1a0
commit 84fa2e0ab0
24 changed files with 1911 additions and 615 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"name": "@stockhome/shared",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"prebuild": "barrelsby --directory src --delete --single",
"build": "tsc",
"lint": "eslint ."
},
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"devDependencies": {
"barrelsby": "^2.8.1",
"vite-plugin-dts": "^5.0.3"
}
}