yiffing.dev/tsconfig.json

20 lines
292 B
JSON
Raw Normal View History

2024-12-15 01:06:18 +01:00
{
"extends": "astro/tsconfigs/strict",
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
]
},
"jsx": "react-jsx",
"jsxImportSource": "react"
}
}