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

23 lines
593 B
JSON
Raw Normal View History

2023-09-02 10:17:15 -04:00
// This TypeScript config is part of Share₂Fedi
// https://github.com/kytta/share2fedi
//
// SPDX-FileCopyrightText: © 2023 Nikita Karamov <me@kytta.dev>
// SPDX-License-Identifier: CC0-1.0
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": ".",
2023-08-29 13:14:55 -04:00
"resolveJsonModule": true,
2023-03-27 13:22:41 -04:00
"paths": {
"@components/*": ["src/components/*"],
"@i18n/*": ["src/i18n/*"],
2023-03-27 13:22:41 -04:00
"@layouts/*": ["src/layouts/*"],
"@pages/*": ["src/pages/*"],
2023-09-02 11:53:16 -04:00
"@lib/*": ["src/lib/*"],
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
}