Files
SWebStatic/node_modules/wrangler/templates/tsconfig.json
T
2026-07-08 18:29:36 +08:00

15 lines
401 B
JSON

{
"extends": "@cloudflare/workers-tsconfig/tsconfig.json",
"compilerOptions": {
"types": ["@cloudflare/workers-types"]
},
"include": ["**/*.ts"],
"exclude": [
"__tests__",
// Note: `startDevWorker` and `middleware` should also be included but some work is needed
// for that first (see: https://github.com/cloudflare/workers-sdk/issues/8303)
"startDevWorker",
"middleware"
]
}