1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-06 19:32:22 +04:00
Files
tabler/docs/tsconfig.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/*"
]
}
}
}