shawn-reuter-blog/tsconfig.json

16 lines
495 B
JSON
Raw Permalink Normal View History

2021-11-30 20:18:49 +00:00
{
2022-08-12 17:41:07 +00:00
"compilerOptions": {
// 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,
// Astro will directly run your TypeScript code, no transpilation needed.
"noEmit": true
}
2021-11-30 20:18:49 +00:00
}