1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-08 04:12:26 +04:00
Files
tabler/docs/tsconfig.json
T

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/*"
]
}
}
}