blob: 41d2aef4a11b08d310f8743b7eb155bde6cfd494 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
{
// 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"
}
}
|