feat(extension): Gravity Web Bridge — antigravity-sdk based VS Code extension with REST/WS bridge

This commit is contained in:
2026-03-07 23:41:57 +09:00
parent aa0b06c661
commit 54147cf695
5 changed files with 1324 additions and 0 deletions

20
extension/tsconfig.json Normal file
View File

@@ -0,0 +1,20 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "ES2020",
"outDir": "out",
"lib": [
"ES2020"
],
"sourceMap": true,
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"resolveJsonModule": true
},
"exclude": [
"node_modules",
"out"
]
}