Skip to content

Commit bfd197e

Browse files
committed
Created ts-mongorepo.
1 parent 4c5c75d commit bfd197e

16 files changed

+8892
-51
lines changed

repository.code-workspace

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
{
1313
"path": "ts"
1414
},
15+
{
16+
"path": "ts-mongorepo"
17+
},
1518
{
1619
"path": ".",
1720
"name": "root"
@@ -28,7 +31,8 @@
2831
"go": true,
2932
"go-memory": true,
3033
"go-mongorepo": true,
31-
"ts": true
34+
"ts": true,
35+
"ts-mongorepo": true
3236
}
3337
}
3438
}

ts-mongorepo/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules/
2+
dist/

ts-mongorepo/.npmignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules
2+
.vscode
3+
.gitignore
4+
.prettierrc
5+
tsconfig.json

ts-mongorepo/.prettierrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"tabWidth": 2,
3+
"singleQuote": true
4+
}

ts-mongorepo/.vscode/settings.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"editor.formatOnSave": true,
3+
"editor.formatOnPaste": true,
4+
"[typescript]": {
5+
"editor.defaultFormatter": "esbenp.prettier-vscode"
6+
}
7+
}

0 commit comments

Comments
 (0)