Skip to content

Commit

Permalink
fix: force compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
monotykamary committed Aug 16, 2024
1 parent af59446 commit ea1f1c0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"main": "./client/out/extension",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"compile": "mkdir -p client/out server/out && tsc -b client/tsconfig.json server/tsconfig.json --force",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"release": "standard-version"
Expand Down
12 changes: 5 additions & 7 deletions server/out/server.js

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

2 changes: 1 addition & 1 deletion server/out/server.js.map

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

2 changes: 1 addition & 1 deletion server/tsconfig.tsbuildinfo

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"lib": ["es2020"],
"sourceMap": true,
"strict": true,
"esModuleInterop": true
"esModuleInterop": true,
"outDir": "out"
},
"include": ["client/src", "server/src"],
"references": [
Expand Down

0 comments on commit ea1f1c0

Please sign in to comment.