mirror of
https://github.com/Xevion/utsa-handbook.git
synced 2025-12-06 01:16:46 -06:00
23 lines
410 B
JSON
23 lines
410 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"compilerOptions": {
|
|
"strictNullChecks": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@components/*": [
|
|
"./src/components/*"
|
|
],
|
|
"@layouts/*": [
|
|
"./src/layouts/*"
|
|
],
|
|
"@pages/*": [
|
|
"./src/pages/*"
|
|
],
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "react"
|
|
}
|
|
} |