mirror of
https://github.com/BradGroux/veritas-kanban.git
synced 2026-09-09 06:31:03 +00:00
- vk list: list tasks with filters (status, type, project) - vk show: display task details - vk create: create new tasks - vk update: modify task fields - vk start: start agent on task - vk stop: stop running agent - vk archive: archive completed task - vk delete: delete task - JSON output option for all commands - Partial ID matching support
15 lines
330 B
JSON
15 lines
330 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|