Files
halo-theme-WarmIsland/tsconfig.json
T
2022-07-29 18:06:56 +08:00

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"
]
}
}