diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..a5328553b2 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,14 @@ +{ + "name": "onnxscript", + "image": "mcr.microsoft.com/devcontainers/python:1-3.13", + "features": {}, + "postCreateCommand": "pip install -r requirements-dev.txt;pip install -e .", + "customizations": { + "vscode": { + "extensions": [ + "hbenl.vscode-test-explorer", + "ms-python.python" + ] + } + } +}