1
0
mirror of https://github.com/rustdesk/doc.rustdesk.com.git synced 2025-01-27 16:38:35 +01:00
doc.rustdesk.com/v3/tsconfig.json

21 lines
328 B
JSON
Raw Normal View History

{
"extends": "astro/tsconfigs/base",
"compilerOptions": {
"strictNullChecks": true,
"allowJs": true,
"baseUrl": ".",
"paths": {
2024-10-11 08:33:16 +02:00
"~/*": [
"src/*"
],
"@/*": [
"./src/*"
]
},
"jsx": "react-jsx",
"jsxImportSource": "react"
},
2024-10-11 08:33:16 +02:00
"exclude": [
"dist/"
]
}