jackmerrill.com/tsconfig.json

13 lines
248 B
JSON
Raw Normal View History

2023-10-31 16:22:25 -07:00
{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"jsx": "react-jsx",
2024-08-27 21:14:30 -07:00
"jsxImportSource": "react",
"baseUrl": ".",
"paths": {
"@assets/*": ["src/assets/*"],
"@components/*": ["src/components/*"]
}
2023-10-31 16:22:25 -07:00
}
2024-08-27 21:14:30 -07:00
}