Preparing build

This commit is contained in:
Nomi Nonsense (Nonszy) 2024-03-24 23:14:08 +07:00
parent 5deaf0f600
commit d401a7b0b0
5 changed files with 874 additions and 7 deletions

1
.env
View File

@ -1 +0,0 @@
SERIAL_PORT=COM3

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
example-client/
build
# Logs
logs

871
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "lunar-vein-arduino",
"version": "1.0.0",
"version": "0.0.6",
"description": "A test to arduino",
"main": "index.ts",
"author": "Norman Andrians",
@ -24,6 +24,7 @@
"ip": "^2.0.1",
"johnny-five": "^2.1.0",
"nodemon": "^3.1.0",
"pkg": "^5.8.1",
"serialport": "^12.0.0",
"socket.io": "^4.7.4"
},

View File

@ -3,8 +3,9 @@
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ES2020",
"sourceMap": false,
"sourceMap": true,
"outDir": "dist"
},
"include": ["src/**/*", "test/**/*"]
"include": ["src/**/*"],
"exclude": ["test/**/*"]
}