hypnotranz 1a0419dc0c feat: initial Matrix SDK
Full SDK workspace: core, contracts, sdk, cli, browser-host, browser-kit,
federation, omega-core, oracle, self-healing, strategies, tools, emacs.
Clean extraction from the development monorepo.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-07 15:54:15 -06:00

29 lines
532 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"rootDir": ".",
"outDir": "dist",
"declaration": true,
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"typeRoots": [
"./types"
],
"incremental": true,
"tsBuildInfoFile": ".tsbuildinfo"
},
"include": [
"src/**/*.ts",
"types/**/*.d.ts"
],
"exclude": [
"node_modules",
"dist",
"tests"
]
}