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 express from 'express';
|
||||||
import { executeCommand } from './broker';
|
import { executeCommand } from './broker.js';
|
||||||
|
|
||||||
const app = express();
|
const app = express();
|
||||||
const port = 8080;
|
const port = 8080;
|
||||||
|
|
|
@ -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"]
|
||||||
}
|
}
|
Loading…
Reference in a new issue