20 lines
528 B
JSON
20 lines
528 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"include": [".astro/types.d.ts", "**/*"],
|
|
"exclude": ["dist"],
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "react",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@assets/*": ["src/assets/*"],
|
|
"@components/*": ["src/components/*"],
|
|
"@data/*": ["src/data/*"],
|
|
"@elements/*": ["src/components/elements/*"],
|
|
"@layouts/*": ["src/layouts/*"],
|
|
"@sections/*": ["src/components/sections/*"],
|
|
"@styles/*": ["src/styles/*"]
|
|
}
|
|
}
|
|
}
|