11 lines
328 B
JavaScript
11 lines
328 B
JavaScript
/**
|
|
* Entry point. The actual source lives in src/server.ts and is compiled
|
|
* to dist/server.js by the TypeScript build step (see package.json "build").
|
|
*
|
|
* Run the compiled output via:
|
|
* npm run build && npm start
|
|
*
|
|
* Or directly with tsx during development:
|
|
* npx tsx src/server.ts
|
|
*/
|
|
require('./dist/server.js'); |