AI Code Quality Guard v1.0 MVP — Chrome extension with static analysis for AI-generated code

This commit is contained in:
Bun Bun
2026-06-15 00:24:03 +00:00
commit 0e8bcec281
16 changed files with 3300 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"outDir": "dist",
"rootDir": "src"
},
"include": ["src"]
}