development -> main #1

Open
Christopher.Hase wants to merge 93 commits from development into main
2 changed files with 3 additions and 2 deletions
Showing only changes of commit 325f961a99 - Show all commits

View file

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

View file

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