Files
flyer-crawler.projectium.com/supabase/tsconfig.json
Torben Sorensen c87ce6f498
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 3m20s
fix supabase functions from orig import
2025-11-11 00:28:26 -08:00

18 lines
563 B
JSON

{
"compilerOptions": {
/* Base Options */
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"allowImportingTsExtensions": true,
"noEmit": true, // This fixes the error with 'allowImportingTsExtensions'
/* Deno-specific settings */
"module": "ESNext",
"moduleResolution": "bundler",
// The Deno Language Server will provide "deno.ns" automatically from deno.json.
// We can keep a basic lib for other tools.
"lib": ["ESNext", "DOM", "DOM.Iterable"]
}
}