add http-server part 6.1.4
Some checks failed
ci / build (push) Has been cancelled

This commit is contained in:
Christopher Hase 2025-04-10 11:41:51 +02:00
parent 88e468525f
commit 325f961a99
2 changed files with 3 additions and 2 deletions

View file

@ -1,5 +1,5 @@
import express from 'express'; import express from 'express';
import { executeCommand } from './broker'; import { executeCommand } from './broker.js';
const app = express(); const app = express();
const port = 8080; const port = 8080;

View file

@ -2,7 +2,8 @@
"extends": "./tsconfig.json", "extends": "./tsconfig.json",
"compilerOptions": { "compilerOptions": {
"outDir": "./dist/backend", "outDir": "./dist/backend",
"module": "ESNext" "module": "ESNext",
"moduleResolution": "node"
}, },
"include": ["backend/**/*.ts"] "include": ["backend/**/*.ts"]
} }