使用 webpack ts-loader 时不显示 Typescript 源

问题描述 投票:0回答:2

我正在使用 grunt 任务中的 webpack 和 ts-loader 来转译 Typescript 并生成源映射以用于调试生产。 我的团队希望能够看到原始的 Typescript 源代码,而不仅仅是 JavaScript 源代码。 我仔细研究了很多页文档和很多问题/答案,寻找正确的解决方案,但到目前为止我在浏览器中看不到 Typescript 文件,只能看到 JavaScript 版本。

我们的项目根模块,或者说是 webpack 任务的“入口”,

webpackEntry
,是一个 Javascript 文件,它需要 JavaScript 文件,其中一些是从 TypeScript 编译的,但有些只是手动创建的。

我有一个 webpack“prod”任务配置如下:

        webpack: {
        options: {
            entry: webpackEntry,
            output: {
                path: webpackDest,
                filename: 'app-min.js',
                libraryTarget: "assign",
                pathInfo: true
            },
            externals: grunt.file.readJSON('app-ui/webpack-externals.json'),
            progress: true
        },
        prod: {
            devtool: 'source-map',
            plugins: [
                new webpack.optimize.UglifyJsPlugin(),
                new webpack.optimize.OccurenceOrderPlugin(),
                new webpack.optimize.DedupePlugin(),
                new webpack.SourceMapDevToolPlugin({
                    test:  /\.tsx?$/,
                    exclude: 'node_modules',
                    module: true,
                    filename: '[file].map',
                    append: false
                })
            ],
            resolve: {
                // Add `.ts` and `.tsx` as a resolvable extension.
                extensions: ['', '.webpack.js', '.web.js', '.ts', '.tsx', '.js','.jsx']
            },
            module: {
                loaders: [
                    // all files with a `.ts` or `.tsx` extension will be handled by `ts-loader`
                    { test: /\.tsx?$/, loader: 'ts-loader', exclude: 'node_modules' }
                ]
            },
            ts: {
                // configures the ts compiler:
                "compilerOptions": {
                    "target": "es5",
                    "sourceMap": true,
                    "jsx": "react",
                    "experimentalDecorators": true
                },
                "exclude": [
                    "node_modules" // add other exclusions for the ts compiler.
                ]
            }
        }...

还有一个 tsconfig.json:

{
   "compilerOptions": {
        "target": "es5",
        "sourceMap": true
    },
    "exclude": [
        "node_modules"
      ]
}

...但我在 Chrome 开发工具源中看到的只是 JavaScript 源文件。 我希望能够看到原始的 JavaScript 源文件以及原始的 Typescript 文件,但看不到转译的 JavaScript 文件。

更新: 我按照下面@basarat的建议添加了source-map-loader工具。 我在开发工具窗口中仍然只能看到 JavaScript 文件。

相关摘录:

module: {
                loaders: [
                    // all files with a `.ts` or `.tsx` extension will be handled by `ts-loader`
                    { test: /\.tsx?$/, loader: 'ts-loader', exclude: 'node_modules' }
                ],
                preLoaders: [
                    // All output '.js' files will have any sourcemaps re-processed by 'source-map-loader'.
                    { test: /\.js$/, loader: "source-map-loader", exclude: ['node_modules', 'ext-*', 'lib', 'tools'] }
                ]
            }, ...

有 ts-loader 方面的专家能够帮忙吗? 预先感谢您的帮助!

typescript gruntjs webpack ts-loader
2个回答
4
投票

您需要使用 source-map-loader 包。

你的 webpack 配置应该是这样的:

module: {
    loaders: [
        // All files with a '.ts' or '.tsx' extension will be handled by 'ts-loader'.
        { test: /\.tsx?$/, loader: "ts-loader" }
    ],

    preLoaders: [
        // All output '.js' files will have any sourcemaps re-processed by 'source-map-loader'.
        { test: /\.js$/, loader: "source-map-loader" }
    ]
},

0
投票

您可以向 webpack 配置的 sourcemap 提供 devTools 值,如下所示:

module.exports = {
    entry:'./app/app',
    output:{
        filename:'bundle.js',
    },
    resolve:{
        extensions:['','.ts','.js'],
        modulesDirectories: ['node_modules']
    },
    module:{
        loaders:[
            {
                test: /\.ts$/, loader: 'ts-loader'
            }
        ]
    },
    devtool: "sourcemap" /*<=================*/
}

Microsoft 的指南位于此处:https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/tutorials/React%20%26%20Webpack.md

© www.soinside.com 2019 - 2024. All rights reserved.