Skip to content

Commit e7c803b

Browse files
committed
fixes
1 parent 14a2c1d commit e7c803b

File tree

4 files changed

+23
-7
lines changed

4 files changed

+23
-7
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @philip-chen6

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
## Summary
2+
<!-- Brief description of changes -->
3+
4+
## Changes
5+
<!-- List of specific changes made -->
6+
-
7+
8+
## Test Plan
9+
<!-- How did you test these changes? -->
10+
- [ ]
11+
12+
## Screenshots (if applicable)
13+
<!-- Add screenshots for UI changes -->
14+
15+
## Checklist
16+
- [ ] Code follows project style guidelines
17+
- [ ] Self-reviewed my code
18+
- [ ] Tested locally
19+
- [ ] No new warnings or errors

backend/package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"name": "backend",
3-
"type": "module",
43
"version": "1.0.0",
54
"description": "",
65
"author": "",
@@ -15,8 +14,7 @@
1514
"format": "npm run check-git-hooks && prettier --write .",
1615
"check-git-hooks": "cd .. && node .secret-scan/secret-scan.js -- --check-git-hooks",
1716
"lint-fix": "npm run check-git-hooks && (eslint --fix --cache --report-unused-disable-directives . || true) && prettier --write .",
18-
"lint-check": "npm run check-git-hooks && eslint --cache --report-unused-disable-directives . && prettier --check .",
19-
"prepare": "cd .. && husky"
17+
"lint-check": "npm run check-git-hooks && eslint --cache --report-unused-disable-directives . && prettier --check ."
2018
},
2119
"dependencies": {
2220
"cors": "^2.8.5",
@@ -32,7 +30,6 @@
3230
"eslint": "^9.39.2",
3331
"eslint-config-prettier": "^10.1.8",
3432
"eslint-plugin-import": "^2.32.0",
35-
"husky": "^9.1.7",
3633
"prettier": "^3.7.4",
3734
"ts-node-dev": "^2.0.0",
3835
"typescript": "^5.9.3"

backend/tsconfig.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"lib": ["ES2020"],
55
"rootDir": "src",
66

7-
"module": "NodeNext",
8-
"moduleResolution": "NodeNext",
7+
"module": "CommonJS",
8+
"moduleResolution": "Node",
99

1010
"types": ["node"],
1111

@@ -17,7 +17,6 @@
1717
"outDir": "dist",
1818
"sourceMap": true,
1919
"esModuleInterop": true,
20-
"verbatimModuleSyntax": true,
2120
"skipLibCheck": true
2221
},
2322
"include": ["src"]

0 commit comments

Comments
 (0)