diff --git a/package-lock.json b/package-lock.json index da01cb8..2ec3e58 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "briefing-back", - "version": "1.2.3", + "version": "1.3.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "briefing-back", - "version": "1.2.3", + "version": "1.3.1", "license": "ISC", "dependencies": { "@types/express": "^4.17.21", diff --git a/package.json b/package.json index c403749..71d7d75 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,12 @@ { "name": "briefing-back", - "version": "1.3.0", + "version": "1.3.1", "description": "", "main": "index.js", "scripts": { "test": "npx jest", - "dev": "nodemon --exec ts-node ./src/index.ts" + "build": "tsc", + "dev": "node dist/index.js" }, "keywords": [], "author": "", diff --git a/tsconfig.json b/tsconfig.json index e075f97..487b437 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -104,6 +104,7 @@ /* Completeness */ // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ - "skipLibCheck": true /* Skip type checking all .d.ts files. */ + "skipLibCheck": true, /* Skip type checking all .d.ts files. */ + "outDir": "./dist" } }