-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Expand file tree
/
Copy pathtsconfig.json
More file actions
23 lines (23 loc) · 991 Bytes
/
tsconfig.json
File metadata and controls
23 lines (23 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"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,
"rootDir": "src",
"strict": true /* enable all strict type-checking options */,
"tsBuildInfoFile": "../../.cache/vscode-ide-companion.tsbuildinfo"
/* 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. */
}
}