Some checks failed
CI / container-job (push) Failing after 35s
- Updated .gitignore to include new patterns - Refined TypeScript configuration for better performance and readability - Cleaned up commented code in several files - Enhanced dataset validation logic - Updated npm dependencies to the latest versions
24 lines
686 B
JavaScript
24 lines
686 B
JavaScript
/*
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| JavaScript entrypoint for running ace commands
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Since, we cannot run TypeScript source code using "node" binary, we need
|
|
| a JavaScript entrypoint to run ace commands.
|
|
|
|
|
| This file registers the "ts-node/esm" hook with the Node.js module system
|
|
| and then imports the "bin/console.ts" file.
|
|
|
|
|
*/
|
|
|
|
/**
|
|
* Register hook to process TypeScript files using ts-node
|
|
*/
|
|
import { register } from 'node:module';
|
|
register('ts-node/esm', import.meta.url);
|
|
|
|
/**
|
|
* Import ace console entrypoint
|
|
*/
|
|
await import('./bin/console.js');
|