RhythmCal MVP: Energy-Aware AI Scheduler Chrome extension

This commit is contained in:
Bun Bun
2026-06-15 18:31:50 +00:00
commit aecb5face5
26 changed files with 2635 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"lib": ["ES2022", "DOM"],
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "dist",
"rootDir": "src",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"types": ["chrome", "node"]
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "dist"]
}