dlmanning / gulp-sass

SASS plugin for gulp
MIT License
1.57k stars 381 forks source link

Typescript problem #727

Closed peterremote1980 closed 5 years ago

peterremote1980 commented 5 years ago

Hi All After i use the follow code to transpile all scss files to css files. My typescript code failed because it still try to include the scss file. I checked with other open source projects, they transpile scss into scss.js file. Any hints?

import styles from './QuantrCalendar.module.scss';
gulp.task('sass', function () {
    return gulp.src('./src/**/*.scss')
        .pipe(sass().on('error', sass.logError))
        .pipe(gulp.dest('./lib'));
});

thanks From Peter

xzyfer commented 5 years ago

We don't know anything about typescript.