newechoes/tsconfig.json

22 lines
358 B
JSON
Raw Normal View History

2025-02-24 16:18:36 +08:00
{
"extends": "astro/tsconfigs/strict",
2025-03-03 21:16:16 +08:00
"include": [
".astro/types.d.ts",
"src/**/*"
],
"exclude": [
"dist"
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
]
},
"jsx": "react-jsx",
"jsxImportSource": "react",
"resolveJsonModule": true,
"esModuleInterop": true
}
}