16 lines
385 B
JSON
16 lines
385 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"moduleResolution": "Bundler",
|
|
"lib": ["ES2022", "WebWorker"],
|
|
"types": ["@cloudflare/workers-types"],
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["src/worker/**/*.ts", "worker-configuration.d.ts"]
|
|
}
|