Implement standalone FromChat Protocol

This commit is contained in:
2025-12-04 23:14:01 +03:00
Unverified
parent 96cba60804
commit cc29d2d546
27 changed files with 592 additions and 120 deletions
+6 -5
View File
@@ -14,10 +14,11 @@
"noEmit": true,
/* Path mapping */
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@fromchat/protocol": ["./packages/fromchat-protocol/src"]
},
/* Linting */
"strict": true,
@@ -31,6 +32,6 @@
"jsx": "react-jsx",
"jsxImportSource": "react"
},
"include": ["src", "electron.d.ts"],
"include": ["src", "electron.d.ts", "packages/fromchat-protocol/src"],
"exclude": ["**/__*/**", "__*"]
}