Initial build: SaaS Cost Predictor Chrome extension MVP

This commit is contained in:
Bun Bun
2026-06-14 18:26:44 +00:00
commit 9082038e29
21 changed files with 2653 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2022", "DOM"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"types": ["chrome", "node"]
},
"include": ["src/**/*"]
}