chore: up to date to latest standards

This commit is contained in:
2025-04-23 13:41:32 +02:00
parent e322b0dfdf
commit 82190b2696
58 changed files with 3669 additions and 428 deletions

View File

@ -1,8 +1,22 @@
{
"extends": "./node_modules/astro/tsconfigs/strictest.json",
"exclude": ["cypress"],
"include": [
".astro/types.d.ts",
"**/*",
"src/config/types.d.ts"
],
"exclude": [
"dist",
"cypress"
],
"compilerOptions": {
"baseUrl": "src",
"allowJs": true
"experimentalDecorators": true,
"allowJs": true,
// hide an issue with typescript
"noUnusedLocals": false
},
"ts-node": {
"esm": true
}
}