Files
astro-tina/tsconfig.json
Kunthawat Greethong 4ab5f16798
Some checks failed
Deploy to Easypanel / deploy (push) Has been cancelled
Initial
2026-04-27 19:13:27 +07:00

18 lines
461 B
JSON

{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@components/*": ["./src/components/*"],
"@layouts/*": ["./src/layouts/*"],
"@styles/*": ["./src/styles/*"],
"@content/*": ["./src/content/*"]
},
"jsx": "react-jsx",
"jsxImportSource": "react"
},
"include": ["src/**/*", ".tina/**/*", "db/**/*"],
"exclude": ["node_modules", "dist", ".astro"]
}