21 lines
479 B
JSON
21 lines
479 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"lib": ["ES2022"],
|
|
"types": ["@cloudflare/workers-types"],
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"paths": {
|
|
"@shared/*": ["./src/shared/*"]
|
|
},
|
|
"baseUrl": "."
|
|
},
|
|
"include": ["src/worker/**/*", "src/shared/**/*"]
|
|
}
|