Files
qwen-code/tsconfig.json
Taylor Mullen 383b917784 Run npm run format
- This has the entirety of the changes.

Part of https://b.corp.google.com/issues/411720532
2025-04-18 18:10:57 -04:00

18 lines
382 B
JSON

{
"compilerOptions": {
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"sourceMap": true,
"composite": true,
// MONOREPO STUFF
"incremental": true,
"target": "ES2020",
"module": "Node16",
"declaration": true,
"moduleResolution": "node16"
}
}