mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
a084d8cec6
* feat: split config types to separate build * chore: changeset * fix: drizzle property exports
12 lines
428 B
JSON
12 lines
428 B
JSON
{
|
|
// We want to avoid defineTable() and defineDb() import hints
|
|
// from the runtime config export instead of astro:db.
|
|
// We exclude runtime/config from the base types,
|
|
// and generate to a separate _internal/ directory
|
|
// for our virtual module (virtual.d.ts) to reference.
|
|
"extends": "../../tsconfig.base.json",
|
|
"files": ["./src/runtime/config.ts"],
|
|
"compilerOptions": {
|
|
"outDir": "./dist/_internal"
|
|
}
|
|
}
|