chore: configure monorepo workspace

Add pnpm workspace configuration, Node version specification, root package.json with build/test/lint scripts, and shared TypeScript configuration
This commit is contained in:
imfozilbek
2025-11-23 21:19:24 +05:00
parent f7bad59b94
commit 530cbdf14d
5 changed files with 85 additions and 0 deletions

16
tsconfig.json Normal file
View File

@@ -0,0 +1,16 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"outDir": "./dist",
"baseUrl": "./"
},
"references": [
{ "path": "./packages/core" },
{ "path": "./packages/server" },
{ "path": "./packages/cli" },
{ "path": "./packages/sdk" },
{ "path": "./packages/mcp" },
{ "path": "./packages/vscode" }
],
"files": []
}