This repository has been archived on 2025-05-12. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
hack13-blog/tsconfig.json
2024-07-06 23:03:52 -04:00

23 lines
521 B
JSON

{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"baseUrl": ".",
"strictNullChecks": true,
"allowJs": 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/**/*"]
}