-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path.devcontainer.json
32 lines (32 loc) · 1020 Bytes
/
.devcontainer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "ReScript",
"image": "mcr.microsoft.com/devcontainers/javascript-node:22-bookworm",
"onCreateCommand": "npm install",
"customizations": {
"github.com/rradczewski/kata-bootstraps": {
"failingTestVerification": "CI=1 npm test 2>&1 | tee /dev/stderr | grep -q 'Tests: 1 failed, 1 passed, 2 total'",
"testCommand": "npm run test:watch",
"languageLogo": "./rescript-brandmark.svg",
"resources": [
{
"name": "ReScript Reference",
"url": "https://rescript-lang.org/docs/manual/latest/introduction"
},
{
"name": "ReScript Jest Usage",
"url": "https://github.com/glennsl/rescript-jest#usage"
},
{
"name": "ReScript Jest Interface Definitions",
"url": "https://github.com/glennsl/rescript-jest/blob/master/src/jest.resi"
}
]
},
"vscode": {
"extensions": [
"chenglou92.rescript-vscode",
"MS-vsliveshare.vsliveshare"
]
}
}
}