mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-26 07:44:05 +00:00
- Add @ruvector/ruvllm-cli v0.1.0: CLI for LLM inference with Metal/CUDA - Add @ruvector/ruvllm-wasm v0.1.0: Browser LLM inference with WebGPU - Remove duplicate npm/packages/wasm (replaced by ruvector-wasm) - Fix workspace:* reference in ruvector-wasm-unified - Update README with npm packages section Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
19 lines
466 B
JSON
19 lines
466 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "test"]
|
|
}
|