3 Commits

Author SHA1 Message Date
Julien Valverdé
cc3db52f02 Fix VSCode settings
All checks were successful
Lint / lint (push) Successful in 13s
2025-10-05 22:47:42 +02:00
Julien Valverdé
619f6a78b2 Fix dependency
Some checks failed
Lint / lint (push) Failing after 8s
2025-10-03 18:31:22 +02:00
Julien Valverdé
3416c5a90c Fix
All checks were successful
Lint / lint (push) Successful in 12s
2025-10-03 18:26:20 +02:00
4 changed files with 8 additions and 6 deletions

View File

@@ -1,6 +1,7 @@
{
"typescript.tsdk": "node_modules/typescript/lib",
"editor.codeActionsOnSave": {
"source.fixAll.biome": "explicit"
}
"typescript.tsdk": "./node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
"editor.codeActionsOnSave": {
"source.fixAll.biome": "explicit"
}
}

View File

@@ -6,7 +6,7 @@
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@effect/language-service": "^0.41.0",
"@types/bun": "latest",
"@types/bun": "^1.2.23",
"npm-check-updates": "^19.0.0",
"npm-sort": "^0.0.4",
"turbo": "^2.5.6",

View File

@@ -14,7 +14,7 @@
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@effect/language-service": "^0.41.0",
"@types/bun": "latest",
"@types/bun": "^1.2.23",
"npm-check-updates": "^19.0.0",
"npm-sort": "^0.0.4",
"turbo": "^2.5.6",

View File

@@ -21,5 +21,6 @@
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["vite.config.ts"]
}