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
Nikita Karamov 89bb338065
Implement translations
See also: https://github.com/kytta/share2fedi/pull/43
Co-authored-by: Sunny Ripert <sunny@sunfox.org>
2023-09-02 21:56:54 +02:00

16 lines
379 B
JSON

{
"extends": "astro/tsconfigs/strictest",
"compilerOptions": {
"ignoreDeprecations": "5.0",
"baseUrl": ".",
"paths": {
"@components/*": ["src/components/*"],
"@i18n/*": ["src/i18n/*"],
"@layouts/*": ["src/layouts/*"],
"@pages/*": ["src/pages/*"],
"@scripts/*": ["src/scripts/*"],
"@stores/*": ["src/stores/*"],
"@styles/*": ["src/styles/*"]
}
}
}