Files
cs249r_book/book/vscode-ext/tsconfig.json
Vijay Janapa Reddi 9e257f960f Add VSCode extension for book build and debug tooling
Sidebar extension with tree views for build, debug, precommit, and
publish workflows. Integrates with the book CLI for chapter-level
builds, cross-reference checks, and MIT Press release packaging.
2026-01-31 19:46:54 -05:00

16 lines
337 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "ES2020",
"outDir": "out",
"lib": ["ES2020"],
"sourceMap": true,
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"exclude": ["node_modules", ".vscode-test"]
}