{ "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"] } }