wrath/tsconfig.json
Lio 9f62303e6f
Some checks are pending
ci/woodpecker/push/build Pipeline is running
checkin
2025-11-18 22:53:10 +01:00

18 lines
464 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*", "eslint.config.cjs"],
"exclude": ["dist"],
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react",
/* Path Aliases */
"baseUrl": ".",
"paths": {
"~/*": ["./src/*"],
"@/*": ["./src/*"]
},
"strictNullChecks": true, // add if using `base` template
"allowJs": true // required, and included with all Astro templates
}
}