mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
[build] add tsconfig.json (#588)
This commit is contained in:
parent
ed51c2608e
commit
8ab1933829
@ -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
8
tsconfig.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"module": "commonjs",
|
||||||
|
"removeComments": true,
|
||||||
|
"noImplicitUseStrict": true
|
||||||
|
},
|
||||||
|
"files": ["packages/**/*"]
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user