Files
tabler/screenshots/tsconfig.json
T

15 lines
351 B
JSON

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