File tree 3 files changed +20
-2
lines changed
3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 3
3
{
4
4
"name" : " Node.js & TypeScript" ,
5
5
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6
- "image" : " mcr.microsoft.com/devcontainers/typescript-node:1-20-bullseye"
6
+ "image" : " mcr.microsoft.com/devcontainers/typescript-node:1-20-bullseye" ,
7
+ "customizations" : {
8
+ "vscode" : {
9
+ "extensions" : [
10
+ " esbenp.prettier-vscode"
11
+ ]
12
+ }
13
+ }
7
14
8
15
// Features to add to the dev container. More info: https://containers.dev/features.
9
16
// "features": {},
Original file line number Diff line number Diff line change
1
+ root = true
2
+
3
+ [* .ts ]
4
+ indent_style = space
5
+ indent_size = 4
6
+ insert_final_newline = true
7
+ trim_trailing_whitespace = true
8
+ end_of_line = lf
9
+ charset = utf-8
Original file line number Diff line number Diff line change 14
14
"persistent" : true
15
15
},
16
16
"lint" : {},
17
- "format" : {},
17
+ "format" : {
18
+ "cache" : true
19
+ },
18
20
"test" : {},
19
21
"test:watch" : {
20
22
"cache" : false
You can’t perform that action at this time.
0 commit comments