mirror of
https://github.com/tabler/tabler.git
synced 2026-08-06 19:32:22 +04:00
8962710163
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
33 lines
495 B
JSON
33 lines
495 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"include": [
|
|
".astro/types.d.ts",
|
|
"**/*"
|
|
],
|
|
"exclude": [
|
|
"dist",
|
|
"public",
|
|
"assets"
|
|
],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@data/*": [
|
|
"../shared/data/*"
|
|
],
|
|
"@shared/*": [
|
|
"../shared/*"
|
|
],
|
|
"@ui/*": [
|
|
"../shared/ui/*"
|
|
],
|
|
"@components/*": [
|
|
"./components/*"
|
|
],
|
|
"@layouts/*": [
|
|
"./layouts/*"
|
|
]
|
|
}
|
|
}
|
|
}
|