astro/examples/basics/tsconfig.json

16 lines
477 B
JSON
Raw Normal View History

{
"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,
// Add type definitions for our Vite runtime.
"types": ["vite/client"]
}
}