diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..acc28f8 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,23 @@ +{ + "name": "Tasknote Dev", + "image": "mcr.microsoft.com/devcontainers/typescript-node:20", + "features": { + "ghcr.io/devcontainers/features/java:1": { + "version": "25", + "jdkDistro": "temurin" + }, + "ghcr.io/devcontainers/features/docker-in-docker:2": {}, + "ghcr.io/devcontainers/features/terraform:1": {} + }, + "customizations": { + "vscode": { + "extensions": [ + "dbaeumer.vscode-eslint", + "vscjava.vscode-java-pack", + "hashicorp.terraform", + "ms-azuretools.vscode-docker" + ] + } + }, + "postCreateCommand": "npm install -g @nestjs/cli typescript fastify class-validator" +}