astro/tsconfig.base.json
2023-07-24 20:47:07 +02:00

12 lines
320 B
JSON

{
"compilerOptions": {
"declaration": true,
"emitDeclarationOnly": true,
"strict": true,
// All packages are built with ESBuild, so we can use `moduleResolution: 'bundler'`
"moduleResolution": "Bundler",
"esModuleInterop": true,
"skipLibCheck": true,
"verbatimModuleSyntax": true
}
}