1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-06 19:32:22 +04:00
Files
tabler/preview/tsconfig.json
2026-08-01 01:58:03 +02:00

30 lines
391 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist",
"public",
"tmp-assets"
],
"compilerOptions": {
"paths": {
"@data/*": [
"../shared/data/*"
],
"@shared/*": [
"../shared/*"
],
"@ui/*": [
"../shared/ui/*"
],
"@components/*": [
"../shared/components/*"
]
},
"baseUrl": "."
}
}