Initial LisgloSIPS V2 implementation

This commit is contained in:
hectorzhao
2026-06-22 10:56:38 +08:00
commit 5fa1bd35e9
303 changed files with 35644 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
{
"name": "@lisglosips/domain",
"version": "0.2.0",
"private": true,
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json"
}
}
+12
View File
@@ -0,0 +1,12 @@
export const MONEY_SCALE = 6;
export type EntityStatus = 'enabled' | 'disabled';
export interface AuditedEntity {
id: string;
createdAt: Date;
updatedAt: Date;
createdBy: string | null;
updatedBy: string | null;
version: number;
}
+10
View File
@@ -0,0 +1,10 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"composite": true,
"rootDir": "src",
"outDir": "dist",
"tsBuildInfoFile": "dist/tsconfig.tsbuildinfo"
},
"include": ["src/**/*.ts"]
}