2
0
Files
website/tsconfig.json
Noa Virellia 20885990ca feat: website
Signed-off-by: Noa Virellia <noa@requiem.garden>
2026-01-27 16:20:44 +08:00

16 lines
378 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": ["**/*.ts", "**/*.tsx", "src/**/*.astro"],
"exclude": ["node_modules", "dist"],
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@components/*": ["./src/components/*"],
"@assets/*": ["./attached_assets/*"]
}
}
}