0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-20 22:12:38 -05:00
astro/examples/framework-solid/tsconfig.json

11 lines
225 B
JSON
Raw Normal View History

{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
2022-04-28 08:42:55 -07:00
// Solid specific settings
"jsx": "preserve",
2022-08-25 19:17:45 +00:00
"jsxImportSource": "solid-js"
}
}