[build] add tsconfig.json (#588)

This commit is contained in:
neverland 2018-09-17 21:57:24 +08:00 committed by GitHub
parent ed51c2608e
commit 8ab1933829
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 1 deletions

View File

@ -4,10 +4,12 @@ const ts = require('gulp-typescript');
const postcss = require('gulp-postcss'); const postcss = require('gulp-postcss');
const cssmin = require('gulp-clean-css'); const cssmin = require('gulp-clean-css');
const rename = require('gulp-rename'); const rename = require('gulp-rename');
const isProduction = process.env.NODE_ENV === 'production'; const isProduction = process.env.NODE_ENV === 'production';
const src = path.join(__dirname, '../packages'); const src = path.join(__dirname, '../packages');
const dist = path.join(__dirname, isProduction ? '../dist' : '../example/dist'); const dist = path.join(__dirname, isProduction ? '../dist' : '../example/dist');
const ext = ['js', 'ts', 'pcss', 'json', 'wxml']; const ext = ['js', 'ts', 'pcss', 'json', 'wxml'];
const tsProject = ts.createProject('tsconfig.json');
function copy(ext) { function copy(ext) {
return gulp.src([src + '/**/*.' + ext]).pipe(gulp.dest(dist)); return gulp.src([src + '/**/*.' + ext]).pipe(gulp.dest(dist));
@ -30,7 +32,7 @@ gulp.task('compile-js', () => copy('js'));
gulp.task('compile-ts', () => gulp.task('compile-ts', () =>
gulp gulp
.src([src + '/**/*.ts']) .src([src + '/**/*.ts'])
.pipe(ts()) .pipe(tsProject())
.pipe(gulp.dest(dist)) .pipe(gulp.dest(dist))
); );
gulp.task('compile-json', () => copy('json')); gulp.task('compile-json', () => copy('json'));

8
tsconfig.json Normal file
View File

@ -0,0 +1,8 @@
{
"compilerOptions": {
"module": "commonjs",
"removeComments": true,
"noImplicitUseStrict": true
},
"files": ["packages/**/*"]
}