diff --git a/lesson_15/ts-node-express/src/index.js b/lesson_15/ts-node-express/src/index.js deleted file mode 100644 index b1103e13..00000000 --- a/lesson_15/ts-node-express/src/index.js +++ /dev/null @@ -1,17 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const express = require("express"); -const dotenv = require("dotenv"); - -dotenv.config(); -const app = express(); - -const port = process.env.PORT || 3000; - -app.get("/", function (req, res) { - res.send("Express + TypeScript Server"); -}); - -app.listen(port, function () { - console.log("[server]: Server is running at http://localhost:".concat(port)); -});