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

25 lines
277 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [
"**/*"
],
"exclude": [
"dist",
"node_modules"
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@data/*": [
"./data/*"
],
"@shared/*": [
"./*"
],
"@ui/*": [
"./ui/*"
]
}
}
}