21 lines
523 B
JSON
21 lines
523 B
JSON
{
|
|
"compilerOptions": {
|
|
// Enable top-level await, and other modern ESM features.
|
|
"lib": [
|
|
"dom"
|
|
],
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
// Enable node-style module resolution, for things like npm package imports.
|
|
"moduleResolution": "node",
|
|
// Enable JSON imports.
|
|
"resolveJsonModule": true,
|
|
// Enable stricter transpilation for better output.
|
|
"isolatedModules": true,
|
|
// Add type definitions for our Astro runtime.
|
|
"types": [
|
|
"astro/client"
|
|
]
|
|
}
|
|
}
|