All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 3m20s
18 lines
563 B
JSON
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"]
|
|
}
|
|
} |