mirror of
https://github.com/juherr/kill-the-news.git
synced 2026-06-21 06:13:48 +00:00
1c8b0ca194
Runs on push/PR to main. Also adds skipLibCheck to tsconfig to silence pre-existing errors in vite/vitest declaration files that don't affect the Worker build. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
456 B
JSON
20 lines
456 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,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|