roles-bot/apps/website/tsconfig.json

13 lines
221 B
JSON
Raw Normal View History

2023-04-03 17:04:16 +02:00
{
2024-08-03 20:23:12 +02:00
"extends": "astro/tsconfigs/strictest",
2023-04-08 14:16:23 +02:00
"compilerOptions": {
"strictNullChecks": true,
"allowJs": true,
"baseUrl": ".",
"paths": {
"~/*": ["src/*"]
2024-08-03 20:23:12 +02:00
},
"types": ["./src/env.d.ts"]
2023-04-08 14:16:23 +02:00
}
2023-04-03 17:04:16 +02:00
}