We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c88eb40 commit 0e29d42Copy full SHA for 0e29d42
1 file changed
.opencode/skills/task-management/scripts/task-cli.ts
@@ -1,4 +1,5 @@
1
#!/usr/bin/env npx ts-node
2
+/// <reference types="node" />
3
/**
4
* Task Management CLI
5
*
@@ -19,8 +20,8 @@
19
20
* .tmp/tasks/completed/{feature-slug}/
21
*/
22
-const fs = require('fs');
23
-const path = require('path');
+import * as fs from "node:fs";
24
+import * as path from "node:path";
25
26
// Find project root (look for .git or package.json)
27
function findProjectRoot(): string {
0 commit comments