mirror of
https://codeberg.org/HPCesia/AstralHalo.git
synced 2025-04-08 17:34:27 +08:00
Refactor project structure and add new components - Add Navbar and SideMenu components - Update Layout and MainLayout - Add config and type definitions - Remove unused assets and components - Update README and gitignore
26 lines
570 B
JSON
26 lines
570 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"strictNullChecks": true,
|
|
"allowJs": false,
|
|
"declaration": true,
|
|
"plugins": [
|
|
{
|
|
"name": "@astrojs/ts-plugin"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@components/*": ["src/components/*"],
|
|
"@assets/*": ["src/assets/*"],
|
|
"@constants/*": ["src/constants/*"],
|
|
"@utils/*": ["src/utils/*"],
|
|
"@i18n/*": ["src/i18n/*"],
|
|
"@layouts/*": ["src/layouts/*"],
|
|
"@/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["dist"]
|
|
}
|