2021-08-13 18:31:44 -05:00
|
|
|
{
|
2021-12-26 22:39:30 -05:00
|
|
|
"compilerOptions": {
|
2022-04-28 10:42:55 -05: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-08-05 16:46:52 -05:00
|
|
|
// Astro will directly run your TypeScript code, no transpilation needed.
|
|
|
|
"noEmit": true
|
2021-12-26 22:39:30 -05:00
|
|
|
}
|
2021-08-13 18:32:55 -05:00
|
|
|
}
|