Skip to content

Commit 5cf35e0

Browse files
committed
Merge branch 'feature/project-configuration' into develop
2 parents 8fa124b + bcdd421 commit 5cf35e0

File tree

6 files changed

+394
-10
lines changed

6 files changed

+394
-10
lines changed

.prettierrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"tabWidth": 2,
3+
"semi": false,
4+
"singleQuote": true,
5+
"trailingComma": "none"
6+
}

nodemon.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"execMap": {
3+
"ts": "ts-node"
4+
}
5+
}

package.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
{
22
"devDependencies": {
3+
"nodemon": "^3.1.4",
4+
"prettier": "3.3.3",
5+
"ts-node": "^10.9.2",
36
"typescript": "^5.5.4",
47
"vitest": "^2.0.5"
8+
},
9+
"scripts": {
10+
"start": "pnpm ts-node src/index.ts",
11+
"dev": "pnpm nodemon src/index.ts",
12+
"build": "tsc",
13+
"test": "vitest"
514
}
615
}

0 commit comments

Comments
 (0)