feat(phase3): VS Code Extension 스캐폴드 - bridge 연동 (approve/reject/text relay)

This commit is contained in:
2026-03-07 11:32:30 +09:00
parent a76208e4e6
commit 52fed8c1d3
7 changed files with 714 additions and 0 deletions

18
extension/tsconfig.json Normal file
View File

@@ -0,0 +1,18 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "ES2022",
"outDir": "out",
"lib": [
"ES2022"
],
"sourceMap": true,
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true
},
"include": [
"src/**/*"
]
}