denpa-radio/frontend/tsconfig.json

15 lines
365 B
JSON

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