first commit

This commit is contained in:
2024-01-15 23:13:55 +01:00
commit 39705a7b43
286 changed files with 47391 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"christian-kohler.npm-intellisense",
"aaron-bond.better-comments",
"formulahendry.auto-rename-tag",
"formulahendry.auto-close-tag",
"christian-kohler.path-intellisense",
"mrmlnc.vscode-scss",
"42crunch.vscode-openapi",
"ms-playwright.playwright",
"clinyong.vscode-css-modules",
"esbenp.prettier-vscode",
"teamchilla.blueprint",
"bradlc.vscode-tailwindcss",
"csstools.postcss",
"editorconfig.editorconfig"
]
}

View File

@@ -0,0 +1,16 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Next.js: debug",
"type": "node-terminal",
"request": "launch",
"command": "npm run start:dev",
"serverReadyAction": {
"pattern": "started server on .+, url: (https?://.+)",
"uriFormat": "%s",
"action": "debugWithChrome"
}
}
]
}

View File

@@ -0,0 +1,42 @@
{
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "file",
"editor.formatOnPaste": true,
"editor.formatOnType": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"javascript.validate.enable": false,
"javascript.suggestionActions.enabled": false,
"blueprint.templatesPath": ["./.blueprints"],
"eslint.validate": [
"typescript",
"typescriptreact",
"javascript",
"javascriptreact"
],
"files.eol": "\n",
"files.exclude": {
// "**/.git": true,
// "**/.svn": true,
// "**/.hg": true,
// "**/CVS": true,
// "**/.DS_Store": true,
// "**/Thumbs.db": true,
// "**/next-env.d.ts": true,
// "**/tsconfig.tsbuildinfo": true,
// "**/package-lock.json": true,
// "**/LICENSE": true,
// "**/.next": true,
// "**/.husky": true,
// "**/.commitlintrc*": true,
// "**/.prettierrc*": true,
// "**/.gitignore": true,
// "**/.eslint*": true,
// "**/.vscode": true
},
"typescript.tsdk": "node_modules/typescript/lib",
"css.validate": false,
"files.associations": {
"*.css": "css",
"css": "css"
}
}