Initial build: Agentjacking Shield Chrome extension MVP

This commit is contained in:
Bun Bun
2026-06-19 00:27:14 +00:00
commit 225ca3caca
20 changed files with 3361 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "dist",
"rootDir": "src",
"resolveJsonModule": true,
"declaration": false,
"sourceMap": true,
"lib": ["ES2022", "DOM"]
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}