adding monkeytype
Some checks failed
Mark Stale PRs / stale (push) Has been cancelled

This commit is contained in:
Benjamin Falch
2026-04-23 13:53:44 +02:00
parent e214a2fd35
commit 2bc741fb78
1930 changed files with 7590652 additions and 0 deletions

106
monkeytype.code-workspace Normal file
View File

@@ -0,0 +1,106 @@
{
"folders": [
//root needs to be first
{
"name": "root",
"path": "./",
},
{
"name": "backend",
"path": "backend",
},
{
"name": "frontend",
"path": "frontend",
},
{
"name": "packages",
"path": "packages",
},
],
"settings": {
"files.exclude": {
"frontend": true,
"backend": true,
"packages": true,
},
"search.exclude": {
//defaults
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
//exclude generated directories
"**/build/**": true,
"**/dist/**": true,
"**/public/**": true,
"**/coverage/**": true,
"**/logs/**": true,
"**/.firebase/**": true,
"**/.turbo/**": true,
},
"editor.defaultFormatter": "oxc.oxc-vscode",
"editor.formatOnSaveMode": "file",
"editor.formatOnSave": true,
"testing.automaticallyOpenTestResults": "neverOpen",
"vitest.maximumConfigs": 10,
"oxc.typeAware": true,
"typescript.format.enable": false,
"oxc.fmt.configPath": ".oxfmtrc-editor.json",
"oxc.fixKind": "safe_fix_or_suggestion",
"[json]": {
"editor.defaultFormatter": "oxc.oxc-vscode",
},
"[html]": {
"editor.defaultFormatter": "oxc.oxc-vscode",
},
"[scss]": {
"editor.defaultFormatter": "oxc.oxc-vscode",
},
"[javascript]": {
"editor.defaultFormatter": "oxc.oxc-vscode",
},
"[typescript]": {
"editor.defaultFormatter": "oxc.oxc-vscode",
},
"[typescriptreact]": {
"editor.defaultFormatter": "oxc.oxc-vscode",
},
"[javascriptreact]": {
"editor.defaultFormatter": "oxc.oxc-vscode",
},
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Backend: Attach",
"port": 9229,
"skipFiles": ["<node_internals>/**", "**/node_modules/**"],
},
{
"type": "chrome",
"request": "launch",
"name": "Frontend: Open and Attach",
"port": 9222,
"skipFiles": ["**/node_modules/**"],
"webRoot": "${workspaceFolder:frontend}/src",
"url": "http://localhost:3000",
},
],
"compounds": [],
},
"extensions": {
"recommendations": [
"esbenp.prettier-vscode",
"vitest.explorer",
"huntertran.auto-markdown-toc",
"dbaeumer.vscode-eslint",
"oxc.oxc-vscode",
"bradlc.vscode-tailwindcss",
"csstools.postcss",
],
},
}