๐Ÿ“ฆ nestjs / nest-cli

๐Ÿ“„ gulpfile.js ยท 16 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16'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');