Files
mini/tsconfig.json

19 lines
388 B
JSON

{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"moduleResolution": "node",
"esModuleInterop": true,
"jsx": "react-jsx",
"jsxImportSource": "react",
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"ES2022",
"DOM"
]
}
}