mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-19 09:33:53 +00:00
22 lines
897 B
JSON
22 lines
897 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"target": "ES2022",
|
|
"lib": ["ES2022", "dom"],
|
|
"sourceMap": true,
|
|
/*
|
|
* skipLibCheck is necessary because the a2a-server package depends on
|
|
* @google-cloud/storage which pulls in @types/request which depends on
|
|
* tough-cookie@4.x while jsdom requires tough-cookie@5.x. This causes a
|
|
* type checking error in ../../node_modules/@types/request/index.d.ts.
|
|
*/
|
|
"skipLibCheck": true,
|
|
"strict": true /* enable all strict type-checking options */
|
|
/* Additional Checks */
|
|
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
|
|
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
|
|
// "noUnusedParameters": true, /* Report errors on unused parameters. */
|
|
}
|
|
}
|