1
0
mirror of https://github.com/NickKaramoff/toot synced 2025-02-12 01:30:52 +01:00

16 lines
349 B
JSON
Raw Normal View History

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": ".",
"paths": {
"@components/*": ["src/components/*"],
"@layouts/*": ["src/layouts/*"],
"@pages/*": ["src/pages/*"],
"@scripts/*": ["src/scripts/*"],
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
}