mirror of
https://github.com/moeru-ai/airi.git
synced 2026-05-17 12:49:33 +00:00
Add PatternRuntime to brain sandbox exposing patterns.get/find/ids/list helpers for known-working recipes, update mcp-surface.md to document patterns global, add patterns to brain-prompt.md globals list with usage guidance, expose patterns in js-planner sandbox and introspection, add test coverage for patterns.get/find in REPL, integrate matchesBlockAlias in breakBlockAt action to support variant-aware block verification [autofix.ci] apply automated fixes chore(minecraft): cleanup [autofix.ci] apply automated fixes
28 lines
584 B
JSON
28 lines
584 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": [
|
|
"ESNext"
|
|
],
|
|
"moduleDetection": "auto",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"node"
|
|
],
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitAny": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
]
|
|
}
|