first commit

This commit is contained in:
douboer
2026-03-21 18:57:10 +08:00
commit c49aa1a5e9
570 changed files with 107167 additions and 0 deletions

15
apps/web/tsconfig.json Normal file
View File

@@ -0,0 +1,15 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"jsx": "preserve",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"types": ["vite/client", "node"],
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@remoteconn/shared": ["../../packages/shared/src/index.ts"],
"@remoteconn/plugin-runtime": ["../../packages/plugin-runtime/src/index.ts"]
}
},
"include": ["src/**/*.ts", "src/**/*.vue", "src/**/*.d.ts"]
}