mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-09-21 21:40:49 +02:00
12 lines
406 B
JavaScript
12 lines
406 B
JavaScript
'use strict';
|
|
/**
|
|
* Load the TypeScript compiler and then load the tasks from 'scripts/gulp'.
|
|
*/
|
|
const path = require('path');
|
|
const gulpPath = path.join(__dirname, 'scripts/gulp');
|
|
const tsconfigPath = path.join(gulpPath, 'tsconfig.json');
|
|
const tsconfig = require(tsconfigPath);
|
|
|
|
// Register TypeScript.
|
|
require('ts-node').register({ project: tsconfigPath });
|
|
require(path.join(gulpPath, 'gulpfile'));
|