Skip to content

Commit

Permalink
use tsc for build
Browse files Browse the repository at this point in the history
Windowsだとエラーが出るため
  • Loading branch information
syuilo committed Feb 23, 2023
1 parent d2ef0ef commit d1a69ab
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
12 changes: 6 additions & 6 deletions packages/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
"start": "node ./built/index.js",
"start:test": "NODE_ENV=test node ./built/index.js",
"migrate": "pnpm typeorm migration:run -d ormconfig.js",
"build": "swc src -d built -D",
"build:swc": "swc src -d built -D",
"watch:swc": "swc src -d built -D -w",
"build:tsc": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
"build": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
"watch": "node watch.mjs",
"typecheck": "tsc --noEmit",
"eslint": "eslint --quiet \"src/**/*.ts\"",
Expand Down Expand Up @@ -128,7 +128,9 @@
"web-push": "3.5.0",
"websocket": "1.0.34",
"ws": "8.12.1",
"xev": "3.0.2"
"xev": "3.0.2",
"tsc-alias": "1.8.2",
"typescript": "4.9.5"
},
"devDependencies": {
"@jest/globals": "29.4.3",
Expand Down Expand Up @@ -181,8 +183,6 @@
"eslint-plugin-import": "2.27.5",
"execa": "6.1.0",
"jest": "29.4.3",
"jest-mock": "29.4.3",
"tsc-alias": "1.8.2",
"typescript": "4.9.5"
"jest-mock": "29.4.3"
}
}
9 changes: 7 additions & 2 deletions pnpm-lock.yaml

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

0 comments on commit d1a69ab

Please sign in to comment.