practice_code/web/graduation/tsconfig.json

19 lines
314 B
JSON
Raw Normal View History

2025-03-23 01:42:26 +08:00
{
"extends": "astro/tsconfigs/strict",
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
],
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react"
},
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"components/*": ["./src/components/*"]
}
}