mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
f395ebcc08
* refactor: rename "config" file to "virtual" * chore: changeset * fix(test): config import
12 lines
430 B
JSON
12 lines
430 B
JSON
{
|
|
// We want to avoid defineTable() and defineDb() import hints
|
|
// from the runtime config export instead of astro:db.
|
|
// We exclude runtime/virtual 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/virtual.ts"],
|
|
"compilerOptions": {
|
|
"outDir": "./dist/_internal"
|
|
}
|
|
}
|