21 lines
336 B
JSON
21 lines
336 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"lib": [
|
|
"ES2022",
|
|
"WebWorker"
|
|
],
|
|
"types": [
|
|
"@cloudflare/workers-types"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
]
|
|
}
|