initializing the files and the memory bank.

This commit is contained in:
Yusuf İpek
2025-10-05 04:42:47 +03:00
parent 2dddb27902
commit ddda9fb9dd
28 changed files with 467 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
{
"name": "shared",
"version": "0.1.0",
"private": true,
"description": "Shared types and schemas.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsc --watch -p tsconfig.json",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"lint": "eslint 'src/**/*.{ts,tsx}'"
}
}
+6
View File
@@ -0,0 +1,6 @@
export type ChatMessage = {
id: string;
author: string;
text: string;
publishedAt: string;
};
+12
View File
@@ -0,0 +1,12 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "dist",
"module": "ESNext",
"target": "ES2021",
"declaration": true,
"declarationMap": true,
"noEmit": false
},
"include": ["src"]
}