deno configs

This commit is contained in:
2025-06-07 13:24:09 -03:00
parent 1ecc722b63
commit b8efc238c4
4 changed files with 4871 additions and 8 deletions

View File

@@ -20,5 +20,7 @@
],
"[typescript]": {
"editor.defaultFormatter": "denoland.vscode-deno"
}
}
},
"deno.enable": true,
"typescript.tsserver.experimental.enableProjectDiagnostics": false
}

4856
deno.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -44,7 +44,7 @@
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-toggle-group": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@supabase/supabase-js": "^2.39.0",
"@supabase/supabase-js": "^2.50.0",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"ai": "^4.3.16",
@@ -68,7 +68,7 @@
"tailwindcss": "^3.4.13",
"tailwindcss-animate": "^1.0.7",
"vaul": "^1.0.0",
"zod": "^3.23.8"
"zod": "3.23.8"
},
"pnpm": {
"onlyBuiltDependencies": [

View File

@@ -5,7 +5,12 @@
"jsxImportSource": "react",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
}
}
"@/*": [
"./src/*"
]
},
},
"include": [
"**/*.ts"
]
}