astro/tsconfig.base.json
2023-07-25 14:51:52 +01: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
}
}