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]": { "[typescript]": {
"editor.defaultFormatter": "denoland.vscode-deno" "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": "^1.1.0",
"@radix-ui/react-toggle-group": "^1.1.0", "@radix-ui/react-toggle-group": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2", "@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": "^18.3.10",
"@types/react-dom": "^18.3.0", "@types/react-dom": "^18.3.0",
"ai": "^4.3.16", "ai": "^4.3.16",
@@ -68,7 +68,7 @@
"tailwindcss": "^3.4.13", "tailwindcss": "^3.4.13",
"tailwindcss-animate": "^1.0.7", "tailwindcss-animate": "^1.0.7",
"vaul": "^1.0.0", "vaul": "^1.0.0",
"zod": "^3.23.8" "zod": "3.23.8"
}, },
"pnpm": { "pnpm": {
"onlyBuiltDependencies": [ "onlyBuiltDependencies": [

View File

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