mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-03-11 17:49:25 -05:00
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.
16 lines
337 B
JSON
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"]
|
|
}
|