astro_avtourist/frontend/tsconfig.json

23 lines
609 B
JSON
Raw Permalink Normal View History

2026-03-31 22:53:39 +05:00
{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
2026-04-18 20:55:07 +05:00
"jsx": "preserve",
"jsxImportSource": "solid-js",
2026-03-31 22:53:39 +05:00
"baseUrl": ".",
"paths": {
"@styles/*": ["src/styles/*"],
"@components/*": ["src/components/*"],
"@data/*": ["src/data/*"],
"@constants": ["src/constants.ts"],
"@scripts/*": ["src/scripts/*"],
2026-03-31 22:53:39 +05:00
"@layouts/*": ["src/layouts/*"],
"@assets/*": ["src/assets/*"],
"@pages/*": ["src/pages/*"],
"@icons/*": ["src/icons/*"],
"@lib/*": ["src/lib/*"],
2026-03-31 22:53:39 +05:00
}
}
}