mirror of
https://github.com/juherr/kill-the-news.git
synced 2026-06-20 22:03:48 +00:00
3ed9d2ee22
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
19 lines
430 B
JSON
19 lines
430 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"lib": ["ES2020"],
|
|
"types": ["@cloudflare/workers-types"],
|
|
"outDir": "dist",
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"allowJs": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|