doc.rustdesk.com/v3/tsconfig.json
2024-10-11 14:33:16 +08:00

21 lines
328 B
JSON

{
"extends": "astro/tsconfigs/base",
"compilerOptions": {
"strictNullChecks": true,
"allowJs": true,
"baseUrl": ".",
"paths": {
"~/*": [
"src/*"
],
"@/*": [
"./src/*"
]
},
"jsx": "react-jsx",
"jsxImportSource": "react"
},
"exclude": [
"dist/"
]
}