mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-26 16:04:02 +00:00
ADR-040 Causal Atlas implementation with full Three.js dashboard: - Planet detection, life candidate scoring, Dyson sphere 3D views - WASM solver with fixed acceptance test (evaluate-before-train, conservative Thompson sampling, non-contradictory noise injection) - wry-based desktop app embedding the full dashboard (1.6 MB binary) - WebSocket live updates, docs view, download page, status dashboard - 10/10 seed acceptance pass rate (was ~40% before fixes) Co-Authored-By: claude-flow <ruv@ruv.net>
17 lines
399 B
JSON
17 lines
399 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"declaration": false,
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src"]
|
|
}
|