Initial commit

This commit is contained in:
2025-01-04 16:53:25 +09:00
commit 53a7e3b63b
11 changed files with 1272 additions and 0 deletions

25
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,25 @@
{
"editor.formatOnSave": true,
"svelte.enable-ts-plugin": true,
"tailwindCSS.classAttributes": ["class", ".+Class"],
"tailwindCSS.experimental.classRegex": [
["tv\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"],
["cn\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"]
],
"typescript.tsdk": "node_modules/typescript/lib",
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[svelte]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[javascript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[json]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[jsonc]": {
"editor.defaultFormatter": "biomejs.biome"
}
}