Added build scripts

This commit is contained in:
Alexander Harding
2026-07-12 17:05:19 -04:00
parent f1382936a5
commit 366a2a13e3
2 changed files with 5 additions and 3 deletions
+3 -1
View File
@@ -4,7 +4,9 @@
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon ./src/index.ts"
"dev": "nodemon ./src/index.ts",
"build": "tsc -b",
"start": "node ."
},
"keywords": [],
"author": "Alexander Harding <AlexHardingYT@gmail.com>",
+2 -2
View File
@@ -2,8 +2,8 @@
// Visit https://aka.ms/tsconfig to read more about this file
"compilerOptions": {
// File Layout
// "rootDir": "./src",
// "outDir": "./dist",
"rootDir": "./src",
"outDir": "./dist",
// Environment Settings
// See also https://aka.ms/tsconfig/module
"module": "nodenext",