ae9a84e351
Reconstructed the original TypeScript source code from the two minified webpack bundles (dist/adapter.js and dist/extension.js). Source structure: - src/common.ts: Shared types (NumberFormat, events, SymbolType/Scope) - src/utils.ts: Utility functions (hexFormat, binaryFormat, etc.) - src/extension.ts: VS Code extension entry point - src/backend/: Debug adapter (GDB/MI2 protocol, symbol table, etc.) - src/frontend/: VS Code UI providers (peripherals, registers, memory, disassembly)
15 lines
336 B
JSON
15 lines
336 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"outDir": "out",
|
|
"lib": ["es6"],
|
|
"sourceMap": true,
|
|
"strict": false,
|
|
"rootDir": "src",
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"exclude": ["node_modules", "dist", ".vscode-test"]
|
|
}
|