Created a vs code extension with Claude

This commit is contained in:
2026-04-17 13:35:57 +02:00
parent 923cfd4152
commit 3e1f0f3ca9
12 changed files with 1217 additions and 0 deletions

View File

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