UP app.jst -> ts

This commit is contained in:
Nikola Petrov 2024-07-16 14:22:33 +02:00
parent f10cb0ab30
commit 9452dcf90e
3 changed files with 34 additions and 8 deletions

View File

@ -1,7 +1,6 @@
var express = require('express');
var path = require('path');
var logger = require('morgan');
const http = require('http');
import express from "express";
import path from 'path'
import morgan from 'morgan'
const hostname = '127.0.0.1';
const httpPort = 4080;
@ -15,12 +14,11 @@ var db = mongoose.connection;
db.on('error', console.error.bind(console, 'MongoDB connection error:'));
var app = express();
const httpServer = http.createServer(app);
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'hbs');
app.use(logger('dev'));
app.use(morgan('dev'));
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(express.static(path.join(__dirname, 'public')));
@ -31,6 +29,6 @@ var apiRouter = require('./routes/api/apiRouter');
app.use('/', mainRouter);
app.use('/api', apiRouter);
httpServer.listen(httpPort, () => {
app.listen(httpPort, () => {
console.log(`Server running at http://${hostname}:${httpPort}/`);
});

View File

@ -11,7 +11,6 @@
"express": "^4.18.2",
"@types/express": "^4.17.21",
"hbs": "^4.2.0",
"http": "^0.0.1-security",
"mongoose": "^7.5.2",
"morgan": "~1.9.1",
"@types/morgan": "^1.9.9"

29
tsconfig.json Normal file
View File

@ -0,0 +1,29 @@
{
"compilerOptions": {
// Enable latest features
"lib": [
"ESNext",
"DOM"
],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"resolveJsonModule": true,
"esModuleInterop": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
}
}