This commit is contained in:
parent
88e468525f
commit
325f961a99
2 changed files with 3 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
import express from 'express';
|
||||
import { executeCommand } from './broker';
|
||||
import { executeCommand } from './broker.js';
|
||||
|
||||
const app = express();
|
||||
const port = 8080;
|
||||
|
|
|
@ -2,7 +2,8 @@
|
|||
"extends": "./tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "./dist/backend",
|
||||
"module": "ESNext"
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "node"
|
||||
},
|
||||
"include": ["backend/**/*.ts"]
|
||||
}
|
Loading…
Reference in a new issue