clan-app: Add vscode workspace for ui-2d

This commit is contained in:
Qubasa
2025-06-19 17:03:04 +02:00
parent 378f68bb5f
commit e5b7685269
3 changed files with 30 additions and 9 deletions

View File

@@ -2,11 +2,7 @@ import { callApi, SuccessQuery } from "@/src/api";
import { useParams } from "@solidjs/router";
import { useQueryClient } from "@tanstack/solid-query";
import { Match, Switch } from "solid-js";
import {
createForm,
required,
SubmitHandler,
} from "@modular-forms/solid";
import { createForm, required, SubmitHandler } from "@modular-forms/solid";
import toast from "solid-toast";
import { Button } from "../../components/Button/Button";
import Icon from "@/src/components/icon";

View File

@@ -17,10 +17,7 @@ import { useQuery } from "@tanstack/solid-query";
import { Badge } from "@/src/components/badge";
import { Group } from "@/src/components/group";
import { useClanContext } from "@/src/contexts/clan";
import {
RemoteForm,
type RemoteData,
} from "@/src/components/RemoteForm";
import { RemoteForm, type RemoteData } from "@/src/components/RemoteForm";
export type HardwareValues = FieldValues & {
report: boolean;

View File

@@ -0,0 +1,28 @@
{
"folders": [
{
"path": "."
},
{
"path": "../../clan-cli"
},
{
"path": "../clan_app"
}
],
"settings": {
"typescript.tsdk": "node_modules/typescript/lib",
"files.exclude": {
"**/.fonts": true,
"**/.claude": true,
"**/.vscode": true,
"**/tests": true,
"**/node_modules": true,
"**/icons": true,
"**/dist": true,
"*.js": true,
"*.json": true,
"tailwind": true,
}
}
}