newechoes/tsconfig.json
2025-03-03 21:16:16 +08:00

22 lines
358 B
JSON

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