使用webpack ts-loader时,Typescript Source未显示

c2e8gylq  于 2023-05-23  发布在  Webpack
关注(0)|答案(2)|浏览(164)

我在一个grunt任务中使用webpack和ts-loader来转译Typescript并生成用于调试生产的源代码Map。我的团队希望能够看到原始的Typescript源代码,而不仅仅是JavaScript源代码。我已经仔细阅读了许多页的文档,以及许多问题/答案,寻找正确的解决方案,但到目前为止,我无法在浏览器中看到Typescript文件,只能看到JavaScript版本。
我们的项目根模块,或者webpack任务的“entry”,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工具。我仍然只能在dev-tools窗口中看到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'] }
                ]
            }, ...

任何Maven在ts装载机能够帮助这一点?提前感谢您的帮助!

kr98yfug

kr98yfug1#

您需要使用源Map加载器。这是涵盖在这里:
你的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" }
    ]
},
n7taea2i

n7taea2i2#

你可以提供devTools值到sourcemap到你的webpack配置如下:

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

相关问题