This repository has been archived on 2024-05-13. You can view files and clone it, but cannot push or open issues or pull requests.
share2fedi/tsconfig.json

17 lines
379 B
JSON
Raw Normal View History

2023-03-17 16:08:08 -04:00
{
2023-03-17 23:14:03 -04:00
"extends": "astro/tsconfigs/strictest",
"compilerOptions": {
2023-03-27 13:22:41 -04:00
"ignoreDeprecations": "5.0",
"baseUrl": ".",
"paths": {
"@components/*": ["src/components/*"],
"@i18n/*": ["src/i18n/*"],
2023-03-27 13:22:41 -04:00
"@layouts/*": ["src/layouts/*"],
"@pages/*": ["src/pages/*"],
"@scripts/*": ["src/scripts/*"],
2023-03-27 14:26:49 -04:00
"@stores/*": ["src/stores/*"],
2023-03-27 13:22:41 -04:00
"@styles/*": ["src/styles/*"]
}
2023-03-17 23:14:03 -04:00
}
2023-03-17 16:08:08 -04:00
}