.agents/oskvp/site/tsconfig.json

14 lines
302 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"strictNullChecks": true,
"types": ["node"],
"baseUrl": ".",
"paths": { "@/*": ["./src/*"] },
"jsx": "react-jsx",
"jsxImportSource": "react"
}
}