22 lines
358 B
JSON
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
|
|
}
|
|
} |