martials.no/tsconfig.json

12 lines
234 B
JSON
Raw Normal View History

2024-09-08 13:14:02 +02:00
{
2024-09-25 22:20:47 +02:00
"extends": "astro/tsconfigs/strict",
"include": ["src/**/*.ts", "src/**/*.astro", "src/**/*.svelte"],
"compilerOptions": {
"strictNullChecks": true,
"allowJs": true,
"paths": {
"@/*": ["./src/*"]
}
}
}