Files
net/frontend/tsconfig.json

22 lines
473 B
JSON

{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
],
"@/components/*": [
"src/components/*"
],
"@/lib/*": [
"src/lib/*"
],
"@/types/*": [
"src/types/*"
]
},
"jsx": "react-jsx",
"jsxImportSource": "react"
}
}