diff --git a/build/compiler.js b/build/compiler.js index 56c21863..c12ae872 100644 --- a/build/compiler.js +++ b/build/compiler.js @@ -4,10 +4,12 @@ const ts = require('gulp-typescript'); const postcss = require('gulp-postcss'); const cssmin = require('gulp-clean-css'); const rename = require('gulp-rename'); + const isProduction = process.env.NODE_ENV === 'production'; const src = path.join(__dirname, '../packages'); const dist = path.join(__dirname, isProduction ? '../dist' : '../example/dist'); const ext = ['js', 'ts', 'pcss', 'json', 'wxml']; +const tsProject = ts.createProject('tsconfig.json'); function copy(ext) { return gulp.src([src + '/**/*.' + ext]).pipe(gulp.dest(dist)); @@ -30,7 +32,7 @@ gulp.task('compile-js', () => copy('js')); gulp.task('compile-ts', () => gulp .src([src + '/**/*.ts']) - .pipe(ts()) + .pipe(tsProject()) .pipe(gulp.dest(dist)) ); gulp.task('compile-json', () => copy('json')); diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 00000000..4a5ece01 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "module": "commonjs", + "removeComments": true, + "noImplicitUseStrict": true + }, + "files": ["packages/**/*"] +}