Skip to content
Snippets Groups Projects
Commit 32d9e4a9 authored by chif's avatar chif
Browse files

Ignore build folder

parent e33b68a0
No related branches found
No related tags found
No related merge requests found
...@@ -77,3 +77,7 @@ typings/ ...@@ -77,3 +77,7 @@ typings/
# Stores VSCode versions used for testing VSCode extensions # Stores VSCode versions used for testing VSCode extensions
.vscode-test .vscode-test
# TS build folder
build/
\ No newline at end of file
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const express = require("express");
const app = express();
app.get("/", (req, res) => res.send("Hello World!"));
app.listen(8000, () => console.log(`Example app listening on port 8000!`));
...@@ -15,4 +15,4 @@ app.use((err: any, req: Request, res: Response, next: NextFunction) => { ...@@ -15,4 +15,4 @@ app.use((err: any, req: Request, res: Response, next: NextFunction) => {
console.error(err.stack); console.error(err.stack);
}); });
app.listen(8000, () => console.log(`Example app listening on port 8000!`)); app.listen(3000, () => console.log(`Example app listening on port 8000!`));
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment