chore: add mcp chrome extension (#710)

This commit is contained in:
Yury Semikhatsky 2025-07-18 17:12:44 -07:00 committed by GitHub
parent 1eee30fd45
commit d3867affed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 880 additions and 5 deletions

15
extension/tsconfig.json Normal file
View file

@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ESNext",
"esModuleInterop": true,
"moduleResolution": "node",
"strict": true,
"module": "ESNext",
"rootDir": "src",
"outDir": "./lib",
"resolveJsonModule": true,
},
"include": [
"src",
],
}