2021-12-21 17:45:23 +00:00
|
|
|
{
|
2021-12-27 03:39:30 +00:00
|
|
|
"compilerOptions": {
|
2022-04-28 15:42:55 +00:00
|
|
|
// Enable top-level await, and other modern ESM features.
|
|
|
|
"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,
|
2022-07-11 12:12:18 +00:00
|
|
|
// Add type definitions for our Astro runtime.
|
|
|
|
"types": ["astro/client"]
|
2021-12-27 03:39:30 +00:00
|
|
|
}
|
2021-12-21 17:45:23 +00:00
|
|
|
}
|