0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00
astro/examples/framework-solid/tsconfig.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
225 B
JSON
Raw Permalink Normal View History

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