deeptrust-v2 / tsconfig.worker.json
zimejin's picture
Deploy: DeepTrust workspace (v2 clean history)
8eb816f
Raw
History Blame Contribute Delete
400 Bytes
{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"moduleResolution": "node",
"outDir": "dist/llm",
"rootDir": "lib/agent/llm",
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"declaration": false,
"noEmit": false
},
"include": ["lib/agent/llm/pipeline.ts", "lib/agent/llm/worker-entry.ts"],
"exclude": ["node_modules"]
}