mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 05:37:21 +00:00
16 lines
333 B
JSON
16 lines
333 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "react",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"strictNullChecks": true
|
|
},
|
|
"include": [".astro/types.d.ts", "**/*"],
|
|
"exclude": ["dist"]
|
|
}
|