made system changes

This commit is contained in:
SinachPat
2026-04-23 09:39:01 +01:00
parent 71296f82af
commit dc177c7689
49 changed files with 6256 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"exactOptionalPropertyTypes": true,
"noUncheckedIndexedAccess": true,
"jsx": "react-jsx",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"isolatedModules": true,
"paths": {
"@originmain/ui": ["./packages/ui/src/index.ts"],
"@originmain/diff-engine": ["./packages/diff-engine/src/index.ts"],
"@originmain/origin-graph": ["./packages/origin-graph/src/index.ts"],
"@originmain/agent-bridge": ["./packages/agent-bridge/src/index.ts"],
"@originmain/ai-layer": ["./packages/ai-layer/src/index.ts"],
"@originmain/renderer": ["./packages/renderer/src/index.ts"],
"@originmain/integrations": ["./packages/integrations/src/index.ts"]
}
}
}