Skip to content

Commit 565e4fd

Browse files
committed
fix: switch to CommonJS, remove MSI, ignore installers
1 parent 686b0fb commit 565e4fd

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ node_modules
33
dist
44
*.log
55
.DS_Store
6+
7+
*.msi

Arb_Engine.msi

-16.8 MB
Binary file not shown.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
"name": "bscalper-bot",
33
"version": "0.1.0",
44
"private": false,
5-
"type": "module",
5+
66
"scripts": {
7-
"start": "ts-node src/index.ts",
7+
"start": "ts-node --transpile-only src/index.ts",
88
"test": "vitest run"
99
},
1010
"dependencies": {

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"compilerOptions": {
33
"target": "ES2022",
4-
"module": "ES2022",
5-
"moduleResolution": "bundler",
4+
"module": "CommonJS",
5+
"moduleResolution": "Node",
66
"strict": true,
77
"esModuleInterop": true,
88
"skipLibCheck": true

0 commit comments

Comments
 (0)