Add VSCode extensions (#283)

This commit is contained in:
Félix Malfait 2023-06-14 17:20:12 +02:00 committed by GitHub
parent 7a0cdbcd05
commit c20108e088
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 37 additions and 10 deletions

View File

@ -1,10 +1,28 @@
{
"name": "Twenty Codespace",
"image": "node:18.16.0",
"features": {
"ghcr.io/devcontainers-contrib/features/jshint:2": {}
},
"forwardPorts": [3000, 3001, 5432],
"postCreateCommand": "cd front && yarn && cd ../server && yarn"
}
"name": "Twenty Codespace",
"image": "node:18.16.0",
"features": {
"ghcr.io/devcontainers-contrib/features/jshint:2": {}
},
"forwardPorts": [3000, 3001, 5432],
"postCreateCommand": "cd front && yarn && cd ../server && yarn",
"customizations": {
"vscode": {
"extensions": [
"styled-components.vscode-styled-components",
"dbaeumer.vscode-eslint",
"unifiedjs.vscode-mdx",
"ms-vscode.makefile-tools",
"ms-azuretools.vscode-docker",
"esbenp.prettier-vscode",
"GraphQL.vscode-graphql",
"prisma.prisma",
"unifiedjs.vscode-mdx",
"yoavbls.pretty-ts-errors",
"graphql.vscode-graphql-syntax",
"graphql.vscode-graphql"
]
}
}
}

View File

@ -1,8 +1,17 @@
{
"recommendations": [
"ms-vscode-remote.remote-containers",
"ms-vscode.makefile-tools",
"styled-components.vscode-styled-components",
"dbaeumer.vscode-eslint",
"Prisma.prisma"
"unifiedjs.vscode-mdx",
"ms-vscode.makefile-tools",
"ms-azuretools.vscode-docker",
"esbenp.prettier-vscode",
"GraphQL.vscode-graphql",
"prisma.prisma",
"unifiedjs.vscode-mdx",
"yoavbls.pretty-ts-errors",
"graphql.vscode-graphql-syntax",
"graphql.vscode-graphql"
]
}