mirror of
https://github.com/tabler/tabler.git
synced 2026-08-28 12:56:24 +04:00
36 lines
543 B
JSON
36 lines
543 B
JSON
{
|
|
"extends": "astro/tsconfigs/strictest",
|
|
"include": [
|
|
".astro/types.d.ts",
|
|
"**/*"
|
|
],
|
|
"exclude": [
|
|
"dist",
|
|
"public",
|
|
"assets"
|
|
],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@data/*": [
|
|
"../shared/data/*"
|
|
],
|
|
"@shared/*": [
|
|
"../shared/*"
|
|
],
|
|
"@ui/*": [
|
|
"../shared/ui/*"
|
|
],
|
|
"@components/*": [
|
|
"./components/*"
|
|
],
|
|
"@layouts/*": [
|
|
"./layouts/*"
|
|
],
|
|
"@lib/*": [
|
|
"./lib/*"
|
|
]
|
|
}
|
|
}
|
|
}
|