V1 without presentation styling
This commit is contained in:
19
presentation/.vscode/extensions.json
vendored
Normal file
19
presentation/.vscode/extensions.json
vendored
Normal 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"
|
||||
]
|
||||
}
|
||||
16
presentation/.vscode/launch.json
vendored
Normal file
16
presentation/.vscode/launch.json
vendored
Normal 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"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
42
presentation/.vscode/settings.json
vendored
Normal file
42
presentation/.vscode/settings.json
vendored
Normal 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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user