mirror of
https://github.com/tabler/tabler.git
synced 2026-08-05 01:44:41 +04:00
28 lines
414 B
JSON
28 lines
414 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"include": [
|
|
".astro/types.d.ts",
|
|
"**/*"
|
|
],
|
|
"exclude": [
|
|
"dist"
|
|
],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@data/*": [
|
|
"../shared/data/*"
|
|
],
|
|
"@shared/*": [
|
|
"../shared/*"
|
|
],
|
|
"@ui/*": [
|
|
"../shared/ui/*"
|
|
],
|
|
"@components/*": [
|
|
"./components/*"
|
|
]
|
|
}
|
|
}
|
|
}
|