Skip to content

Commit 7711266

Browse files
authored
Merge branch 'code-differently:main' into main
2 parents 19a4187 + 821f130 commit 7711266

17 files changed

+5362
-2
lines changed

.devcontainer/devcontainer.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"ghcr.io/devcontainers/features/python:1": {},
1616
"ghcr.io/devcontainers-contrib/features/ts-node:1": {},
1717
"ghcr.io/devcontainers/features/sshd:1": {},
18-
"ghcr.io/warrenbuckley/codespace-features/sqlite:1": {}
18+
"ghcr.io/warrenbuckley/codespace-features/sqlite:1": {},
19+
"ghcr.io/devcontainers/features/github-cli:1": {}
1920
},
2021
"portsAttributes": {
2122
"80": {
@@ -35,7 +36,11 @@
3536
"ritwickdey.LiveServer",
3637
"mechatroner.rainbow-csv",
3738
"alexcvzz.vscode-sqlite"
38-
]
39+
],
40+
"settings": {
41+
"terminal.integrated.defaultProfile.linux": "zsh",
42+
"terminal.integrated.profiles.linux": { "zsh": { "path": "/bin/zsh" } }
43+
}
3944
}
4045
}
4146
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/** @type {import('ts-jest').JestConfigWithTsJest} **/
2+
export default {
3+
testEnvironment: "node",
4+
transform: {
5+
"^.+.tsx?$": ["ts-jest",{}],
6+
},
7+
"moduleNameMapper": {
8+
"^(\\.\\.?\\/.+)\\.js$": "$1",
9+
},
10+
};

0 commit comments

Comments
 (0)