mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 15:08:37 +00:00
16 lines
399 B
JavaScript
16 lines
399 B
JavaScript
'use strict';
|
|
/**
|
|
* Load the TypeScript compiler, then load the TypeScript gulpfile which simply loads all
|
|
* the tasks. The tasks are really inside tools/gulp/tasks.
|
|
*/
|
|
|
|
const path = require('path');
|
|
|
|
const projectDir = __dirname;
|
|
const tsconfigPath = path.join(projectDir, 'tools/gulp/tsconfig.json');
|
|
|
|
require('ts-node').register({
|
|
project: tsconfigPath
|
|
});
|
|
|
|
require('./tools/gulp/gulpfile'); |