astro/examples/framework-vue/tsconfig.json

16 lines
479 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 Astro runtime.
"types": ["astro/client"]
}
2021-08-13 23:32:55 +00:00
}