首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >错误:最终加载器(./node_modules/awesome-typescript-loader/dist/entry.js)未返回缓冲区或字符串

错误:最终加载器(./node_modules/awesome-typescript-loader/dist/entry.js)未返回缓冲区或字符串
EN

Stack Overflow用户
提问于 2021-05-31 07:47:59
回答 1查看 1.8K关注 0票数 2

当dockerhub生成dockerfile时发生此错误

错误:最终加载器(./node_modules/awesome-typescript-loader/dist/entry.js)未返回缓冲区或字符串

我在网上搜索了各种解决方案,但没有找到任何可行的方案。

"webpack":"^5.38.1“”awesome typescript-loader“:"^5.2.1”

这是我的docker文件

代码语言:javascript
复制
# build environment
FROM node:12.22.1-alpine as build
WORKDIR /app
COPY package.json /app/package.json
RUN npm cache clean --force 
RUN npm install
COPY . /app
ENV PORT 80
ENV NODE_ENV=development
RUN npm run dev

# production environment
FROM nginx:stable-alpine
COPY nginx.test.conf /etc/nginx/conf.d/default.conf
COPY --from=build /app/dist /usr/share/nginx/html

EXPOSE 80
CMD ["nginx", "-g", "daemon off;"] 

tsconfig.json

代码语言:javascript
复制
{
  "compilerOptions": {
    "outDir": "./dist/",
    "noImplicitAny": true,
    "target": "es5",
    "lib": [
      "dom",
      "dom.iterable",
      "esnext"
    ],
    "allowJs": true,
    "skipLibCheck": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "noFallthroughCasesInSwitch": true,
    "module": "esnext",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "jsx": "react-jsx",
    "types": [
      "webpack-env"
    ],
    //"noImplicitThis": true,
    //"strictNullChecks": true
  },
  "awesomeTypescriptLoaderOptions": {
    "useTranspileModule": true,
  },
  "include": [
    "src",
    "src/.d.ts"
  ]
}

webpack.config.dev.js

代码语言:javascript
复制
const path = require('path');
const autoprefixer = require('autoprefixer');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const webpack = require('webpack');
const precss = require('precss');


module.exports = {
    mode: 'development',
    entry: './src/index.tsx',
    output: {
        path: path.resolve(__dirname, 'dist'),
        filename: '[name].js',
        chunkFilename: '[name].[contenthash].js',
        publicPath: '/'
    },
    resolve: {
        extensions: ['.tsx', '.ts', '.js']
    },
    module: {
        rules: [
            {
                test: /\.js$|jsx/,
                loader: 'babel-loader',
                exclude: /node_modules/,
                options: {
                    use: ['babel-loader']
                }
            },
            {
                test: /\.css$/i,
                use: ["style-loader", "css-loader"],
            },
            {
                test: /\.pdf$/i,
                use: 'file-loader',
            },
            {
                test: /\.(png|jpe?g|gif|svg)$/,
                use: 'url-loader?limit=10000&name=img/[name].[ext]'
            },
            {
                test: /\.tsx?$/,
                loader: 'awesome-typescript-loader',
                exclude: /node_modules/,
            },
            {
                test: /\.s[ac]ss$/i,
                use: [
                    'style-loader',
                    'css-loader',
                    'sass-loader',
                ]
            },
            {
                test: /\.(woff(2)?|ttf|eot)(\?v=\d+\.\d+\.\d+)?$/,
                use: [
                    {
                        loader: 'file-loader',
                        options: {
                            name: '[name].[ext]',
                            outputPath: 'fonts/'
                        }
                    }
                ]
            }
        ]
    },
    plugins: [
        new HtmlWebpackPlugin({
            template: __dirname + '/public/index.html',
            filename: 'index.html',
            inject: 'body',
        }),
        new CopyWebpackPlugin({
            //this is the new change
            patterns: [
              { from: path.join(__dirname, 'static') },
            ],
      
          }),
        new webpack.LoaderOptionsPlugin({
            options: {
                postcss: [autoprefixer, precss],
            },
        }),
        new webpack.HotModuleReplacementPlugin()
    ],
};
EN

回答 1

Stack Overflow用户

发布于 2021-05-31 09:14:41

awesome TypeScript loader不再维护,并且与Webpack 5(或最新的TypeScript版本)不兼容。您需要删除awesome-typescript-loader,安装ts-loader,并将webpack.config.dev.js中的相关块更改为:

代码语言:javascript
复制
            {
                test: /\.tsx?$/,
                loader: 'ts-loader',
                exclude: /node_modules/,
            },
票数 10
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/67766617

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档