Skip to content

Commit

Permalink
fix: idk whats going on
Browse files Browse the repository at this point in the history
  • Loading branch information
Sv443 committed Nov 28, 2024
1 parent a5579d5 commit 47c1648
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 31 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
"type": "module",
"scripts": {
"dev": "nodemon -e \"ts,d.ts,json\" -x \"pnpm start\"",
"start": "tsc && node --no-warnings=ExperimentalWarning --enable-source-maps out/src/index.js",
"start": "tsx src/index.ts",
"dev-www": "cd www && pnpm run dev",
"build-www": "cd www && pnpm run build",
"dev-all": "concurrently \"pnpm dev\" \"pnpm dev-www\"",
"lint": "eslint . && tsc --noEmit",
"test": "start-server-and-test start http://localhost:8074 jest"
"test": "start-server-and-test start http://127.0.0.1:8074 jest"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -74,6 +74,7 @@
"pnpm": "^9.14.2",
"start-server-and-test": "^2.0.8",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.1"
},
"nodemonConfig": {
Expand Down
34 changes: 12 additions & 22 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,25 +25,25 @@
"strict": true,
"useDefineForClassFields": true,
"noImplicitThis": false,
"allowImportingTsExtensions": false,
"paths": {
"@src/*": ["src/*"],
"@routes/*": ["src/routes/*"],
"@www/*": ["www/*"],
"@root/*": ["."],
"@root/*": ["*"],
}
},
"ts-node": {
"esm": true,
"preferTsExts": true,
},
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"www/**/*.ts",
"www/**/*.d.ts",
"src/**/*",
"www/**/*",
],
"exclude": [
"**/dist/**",
"**/dev/**",
"**/node_modules/**/*",
"**/dist/**/*",
"**/dev/**/*",
],
}

0 comments on commit 47c1648

Please sign in to comment.