You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var ts = require('../node_modules/gulp-typescript');
var tsConfigPath = './src/tsconfig.json';
var tsProject = ts.createProject(tsConfigPath);
var tsResult = tsProject.src()
.pipe(inlineNg2Template({ useRelativePaths: true}))
.pipe(tsProject());`
With above code, the templateUrl doesn't change. Can we use tsProject.src() ?
The text was updated successfully, but these errors were encountered:
AbhilashThomas
changed the title
Is it possibel to use this plugin with tsProject.src() instead of gulp.src()
Is it possible to use this plugin with tsProject.src() instead of gulp.src()
Mar 5, 2017
`var gulp = require('../node_modules/gulp');
var ts = require('../node_modules/gulp-typescript');
var tsConfigPath = './src/tsconfig.json';
var tsProject = ts.createProject(tsConfigPath);
var tsResult = tsProject.src()
.pipe(inlineNg2Template({ useRelativePaths: true}))
.pipe(tsProject());`
With above code, the templateUrl doesn't change. Can we use tsProject.src() ?
The text was updated successfully, but these errors were encountered: