mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +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 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'));
|
||||
|
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