InvoiceChaser v1.0.0 — Freelancer Payment Tracker & Auto Follow-Up Chrome Extension

This commit is contained in:
Bun Bun
2026-06-19 18:33:39 +00:00
commit 326d408449
26 changed files with 3519 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM"],
"module": "ES2022",
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "dist",
"rootDir": "src",
"resolveJsonModule": true,
"declaration": false,
"sourceMap": true,
"types": ["chrome", "node"]
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}