toot-script-condivisione-su.../tsconfig.json

23 lines
593 B
JSON
Raw Permalink Normal View History

2023-09-02 16:17:15 +02: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 21:08:08 +01:00
{
2023-03-18 04:14:03 +01:00
"extends": "astro/tsconfigs/strictest",
"compilerOptions": {
2023-03-27 19:22:41 +02:00
"ignoreDeprecations": "5.0",
"baseUrl": ".",
2023-08-29 19:14:55 +02:00
"resolveJsonModule": true,
2023-03-27 19:22:41 +02:00
"paths": {
"@components/*": ["src/components/*"],
"@i18n/*": ["src/i18n/*"],
2023-03-27 19:22:41 +02:00
"@layouts/*": ["src/layouts/*"],
"@pages/*": ["src/pages/*"],
2023-09-02 17:53:16 +02:00
"@lib/*": ["src/lib/*"],
2023-03-27 20:26:49 +02:00
"@stores/*": ["src/stores/*"],
2023-03-27 19:22:41 +02:00
"@styles/*": ["src/styles/*"]
}
2023-03-18 04:14:03 +01:00
}
2023-03-17 21:08:08 +01:00
}