Files
halo-theme-WarmIsland/tsconfig.json
T
Ryan Wang ceceb37349 init project
Signed-off-by: Ryan Wang <i@ryanc.cc>
2022-07-28 22:53:51 +08:00

16 lines
479 B
JSON

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