mirror of https://github.com/webpack/webpack.git
4.1 KiB
4.1 KiB
example.js
console.log(require("./index"));
index.ts
const myName: string = "Junya";
const age: number = 22;
function getArray<T>(...args: T[]): T[] {
return [...args];
}
console.log(getArray("foo", "bar"));
console.log(getArray(1, 2, 3));
webpack.config.js
const ForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin");
module.exports = (env = "development") => ({
mode: env,
entry: {
output: "./index.ts"
},
module: {
rules: [
{
test: /\.tsx?$/,
loader: "ts-loader",
options: {
transpileOnly: true
}
}
]
},
resolve: {
extensions: [".ts", ".js", ".json"]
},
plugins: [new ForkTsCheckerWebpackPlugin({ async: env === "production" })]
});
dist/output.js
/******/ (function(modules) { /* webpackBootstrap */ })
/******/ (function(modules, runtime) { // webpackBootstrap
/******/ "use strict";
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId]) {
/******/ return installedModules[moduleId].exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ i: moduleId,
/******/ l: false,
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/ // Flag the module as loaded
/******/ module.l = true;
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/******/
/******/
/******/ // the startup function
/******/ function startup() {
/******/ // Load entry module and return exports
/******/ return __webpack_require__(0);
/******/ };
/******/
/******/ // run startup
/******/ return startup();
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/*!********************!*\
!*** ./example.js ***!
\********************/
/*! exports [maybe provided (runtime-defined)] [no usage info] */
/*! runtime requirements: __webpack_require__ */
/***/ (function(__unusedmodule, __unusedexports, __webpack_require__) {
console.log(__webpack_require__(/*! ./index */ 1));
/***/ }),
/* 1 */
/*!******************!*\
!*** ./index.ts ***!
\******************/
/*! exports [maybe provided (runtime-defined)] [no usage info] */
/*! runtime requirements: */
/***/ (function() {
var myName = "Junya";
var age = 22;
function getArray() {
var args = [];
for (var _i = 0; _i < arguments.length; _i++) {
args[_i] = arguments[_i];
}
return args.slice();
}
console.log(getArray("foo", "bar"));
console.log(getArray(1, 2, 3));
/***/ })
/******/ ]);
Info
Unoptimized
Starting type checking service...
Using 1 worker with 2048MB memory limit
Hash: 0a1b2c3d4e5f6a7b8c9d
Version: webpack 5.0.0-alpha.16
Asset Size Chunks Chunk Names
output.js 2.07 KiB {0} [emitted] main
Entrypoint main = output.js
chunk {0} output.js (main) 298 bytes [entry] [rendered]
> ./example.js main
[0] ./example.js 33 bytes {0} [built]
[used exports unknown]
entry ./example.js main
[1] ./index.ts 265 bytes {0} [built]
[used exports unknown]
cjs require ./index [0] ./example.js 1:12-30
Production mode
Starting type checking service...
Using 1 worker with 2048MB memory limit
Hash: 0a1b2c3d4e5f6a7b8c9d
Version: webpack 5.0.0-alpha.16
Asset Size Chunks Chunk Names
output.js 377 bytes {179} [emitted] main
Entrypoint main = output.js
chunk {179} output.js (main) 298 bytes [entry] [rendered]
> ./example.js main
[144] ./example.js 33 bytes {179} [built]
entry ./example.js main
[862] ./index.ts 265 bytes {179} [built]
cjs require ./index [144] ./example.js 1:12-30