2024-03-04 19:36:56 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ESNext",
|
2025-02-18 22:23:51 +08:00
|
|
|
"jsx": "preserve",
|
2024-03-04 19:36:56 +08:00
|
|
|
"lib": [
|
|
|
|
"ESNext"
|
|
|
|
],
|
2025-02-18 22:23:51 +08:00
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "Bundler",
|
2024-03-04 19:36:56 +08:00
|
|
|
"types": [
|
|
|
|
"@cloudflare/workers-types"
|
|
|
|
],
|
2025-02-18 22:23:51 +08:00
|
|
|
"strict": true,
|
2024-03-04 19:36:56 +08:00
|
|
|
"strictNullChecks": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
2025-02-18 22:23:51 +08:00
|
|
|
"skipDefaultLibCheck": true,
|
|
|
|
"skipLibCheck": true
|
|
|
|
}
|
2024-03-04 19:36:56 +08:00
|
|
|
}
|