martials.no/tsconfig.json

23 lines
342 B
JSON
Raw Permalink Normal View History

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