总体来看,TypeScript项目构建主要分两步:
- 将ts 项目整体转换为js项目
- 按常规套路,对该 js 项目进行打包构建
构建过程中,对 ts 文件的转换不再使用命令行方式,所以 tsc 的配置参数,需要通过 tsconfig.json 文件设置。
初始化 tsconfig.json
tsc --init
之后,我们会在项目目录中得到一个完整冗长的 tsconfig.json 配置文件。这个文件暂且不必改动。
{ "compilerOptions": { /* Basic Options */ // "incremental": true, /* Enable incremental compilation */ "target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */ "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ // "lib": [], /* Specify library files to be included in the compilation. */ // "allowJs": true, /* Allow javascript files to be compiled. */ // "checkJs": true, ... } }
使用webpack 构建
全局安装 webpack
npm i -g webpack webpack-cli
本地安装 ts-loader 和 typescript
npm i -D ts-loader typescript
创建 webpack.config.js
const path = require('path') module.exports = { mode: 'production', entry: { main: './index.ts' }, module: { rules: [ { test: /\.ts$/, use: 'ts-loader', exclude: /node_modules/ } ] }, output: { filename: 'webpack-bundle.js', path: path.resolve(__dirname, 'dist'), libraryTarget: 'commonjs', }, resolve: { extensions: ['.ts'] } }
运行webpack
经过上述配置之后,在控制台项目路径内,中直接运行 webpack 。
% webpack Hash: 1c028195d238a71fe1c7 Version: webpack 4.41.3 Time: 726ms Built at: 2019/12/17 下午2:56:12 Asset Size Chunks Chunk Names index.js 1.61 KiB 0 [emitted] main Entrypoint main = index.js [0] ./a.ts 147 bytes {0} [built] [1] ./b.ts 147 bytes {0} [built] [2] ./index.ts 318 bytes {0} [built] [3] ./c.ts 378 bytes {0} [built]
在dist 中,生成了一个转换且合并完成的webpack-bundle.js 文件。
使用 gule 构建
全局安装 gule
npm i -g gulp
本地安装
- gulp
- browserify
- tsify
- vinyl-source-stream
npm i -D gulp browserify tsify vinyl-source-stream
创建 gulpfile.js 文件
const gulp = require('gulp') const tsify = require('tsify') const browserify = require('browserify') const source = require('vinyl-source-stream') gulp.task('default', () => { return browserify({ basedir: '.', debug: true, entries: ['index.ts'], cache: {}, packageCache: {} }).plugin(tsify).bundle() .pipe(source('gulp-bundle.js')) .pipe(gulp.dest('dist')) })
运行gulp
经过上述配置之后,在控制台项目路径内,中直接运行gulp 。
% gulp [15:37:30] Using gulpfile ~/ts-learn/bundle/gulpfile.js [15:37:30] Starting 'default'... [15:37:32] Finished 'default' after 1.4 s
在dist 中,生成了一个转换且合并完成的gulp-bundle.js 文件。
配置npm 指令
我们将这两个指令整合到项目指令中:
"scripts": { "test": "ts-node test", "build-webpack": "webpack", "build-gulp": "gulp", "build": "npm run build-webpack" }
这里分别针对webpack /gulp 添加了构建指令,并将build 指令设置为默认使用webpack 构建。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新动态
- 雨林唱片《赏》新曲+精选集SACD版[ISO][2.3G]
- 罗大佑与OK男女合唱团.1995-再会吧!素兰【音乐工厂】【WAV+CUE】
- 草蜢.1993-宝贝对不起(国)【宝丽金】【WAV+CUE】
- 杨培安.2009-抒·情(EP)【擎天娱乐】【WAV+CUE】
- 周慧敏《EndlessDream》[WAV+CUE]
- 彭芳《纯色角3》2007[WAV+CUE]
- 江志丰2008-今生为你[豪记][WAV+CUE]
- 罗大佑1994《恋曲2000》音乐工厂[WAV+CUE][1G]
- 群星《一首歌一个故事》赵英俊某些作品重唱企划[FLAC分轨][1G]
- 群星《网易云英文歌曲播放量TOP100》[MP3][1G]
- 方大同.2024-梦想家TheDreamer【赋音乐】【FLAC分轨】
- 李慧珍.2007-爱死了【华谊兄弟】【WAV+CUE】
- 王大文.2019-国际太空站【环球】【FLAC分轨】
- 群星《2022超好听的十倍音质网络歌曲(163)》U盘音乐[WAV分轨][1.1G]
- 童丽《啼笑姻缘》头版限量编号24K金碟[低速原抓WAV+CUE][1.1G]