diff --git a/package.json b/package.json index 5534b5a..f582ef1 100644 --- a/package.json +++ b/package.json @@ -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 ", diff --git a/tsconfig.json b/tsconfig.json index 74cc26e..66e911b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -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",