Initial stopwatch CLI

This commit is contained in:
2026-07-03 19:20:15 +00:00
commit 85fa683a6d
8 changed files with 849 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "dist",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"declaration": true
},
"include": ["src"],
"exclude": ["src/**/*.test.ts"]
}