首页 文章

Webpack React Typescript

提问于
浏览
11

是否可以将Webpack与React和Typescript一起使用,并且能够将这些捆绑到Web捆绑包中,但仍然能够调试原始的TypeScript和React代码?在webpack中我使用ts-loader和ts-jsx-loader加上devtool:“source-map”,但是当我尝试进行浏览器调试时,我看不到原始的ts代码,而是看到代码已被更改通过webpack .

我目前的基本webpack.config.js文件:

var webpack = require('webpack');
module.exports = {
  entry: ['./app/main.ts'],
  output: {
    path: './build',
    filename: 'bundle.js'
  },
  debug: true,
  devtool: 'source-map',
  plugins: [
    new webpack.optimize.DedupePlugin(),
    new webpack.optimize.UglifyJsPlugin()
  ],
  resolve: {
    extensions: ['', '.ts', '.js']
  },
  module: {
    loaders: [
      {
        test: /\.ts$/,
        loader: 'ts-loader!ts-jsx-loader'
      }
    ]
  }
};

tsconfig.json:

{
    "compileOnSave": false,
    "version": "1.5.0-alpha",
    "compilerOptions": {
        "target": "es5",
        "module": "commonjs",
        "noLib": false,
        "sourceMap": true,
        "noImplicitAny": true,
        "removeComments": true
    },
    "files": [
        "./AppComponent.ts",
        "./libs/jsx.d.ts",
        "./libs/react.d.ts",
        "./libs/webpack-runtime.d.ts",
        "./main.ts"
    ]
}

例如 - 我的oryginal .ts文件看起来像:

import React = require('react');

class AppComponent extends React.Component<any, any> {
  render () {
    return React.jsx(`
      <h1>He world!</h1>
    `);
  }
};
export = AppComponent;

在chrome调试器中它看起来像这样:

var __extends = this.__extends || function (d, b) {
    for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
    function __() { this.constructor = d; }
    __.prototype = b.prototype;
    d.prototype = new __();
};
var React = __webpack_require__(2);
var AppComponent = (function (_super) {
    __extends(AppComponent, _super);
    function AppComponent() {
        _super.apply(this, arguments);
    }
    AppComponent.prototype.render = function () {
        return (React.createElement("h1", null, "He world!"));
    };
    return AppComponent;
})(React.Component);
;
module.exports = AppComponent;


/*****************
 ** WEBPACK FOOTER
 ** ./app/AppComponent.ts
 ** module id = 158
 ** module chunks = 0
 **/

2 回答

  • 1

    您不需要使用ts-jsx-loader .

    在你的tsconfig.json文件中,你只需要这样的东西:

    {
      "compilerOptions": {
        "jsx": "react",
        "sourceMap": true,
        // ... other options
      }
    }
    

    当然,您仍然需要webpack配置文件中的devtool选项

  • 2

    您可能未在tsconfig.json文件中指定 sourceMap ,因此TypeScript编译器未输出源图 .

相关问题