npm 运行 watch/hot 仅在第一个成功 运行

npm run watch/hot only successful on the first run

背景:

我为现有项目添加了 TypeScript 支持,因此我添加了 ts-loadertypescript。我想,我正确配置了一切,它在 devprod 模式下工作正常。

我想逐步更新,保留所有 JavaScript 代码并在所有新内容或需要重构的地方使用 TypeScript。所以可能需要注意 TableValue.vue 是一个旧的 js 组件。

问题:

编辑:它也出现在 npm run watch

当我 运行 npm run hot in package.json: "scripts": { ..., "hot": "mix watch --hot", ...} 它只在第一次尝试时有效。只要我更改任何文件并触发重新编译,我就会得到:

√ Mix: Compiled successfully in 19.15s
webpack compiled successfully

// Here the recompile is triggered
i Compiling Mix
√ Mix: Compiled with some errors in 509.01ms
ERROR in C:\fakepath\resources\js\components\test\component.vue.ts
24:23-41
[tsl] ERROR in C:\fakepath\resources\js\components\test\component.vue.ts(24,24)
      TS2307: Cannot find module './TableValue.vue' or its corresponding type declarations.

webpack compiled with 1 error

我怀疑这个错误来自 ts-loader,但为什么第一次尝试一切正常?

我可以忽略这个错误,但是 hot module replacement 无法使用,因为无论如何我每次都必须手动触发一个新的构建过程。


信息:

我正在与:

这里是来自测试组件的脚本标签:

<script lang="ts">
import Vue, { PropType } from 'vue';

import TableValue from "./TableValue.vue";
import Model from "@/js/types/model.js";

export default Vue.extend({
  name: "TestComponent",
  components: {
    TableValue
  },
  props: {
    'model': {
      type: Object as PropType<Model>,
      required: true
    }
  },
  data() {
    return {};
  },
});
</script>

项目结构:

app/
bootstrap/
config/
database/
node_modules/
public/
resources/
  js/
    components/
    store/
    types/
    views/
    app.js
    bootstrap.js
    routes.js
    shims-vue.d.ts
  lang/
  sass/
  views/
routes/
storage/
tests/
vendor/
composer.json
composer.lock
tsconfig.json
package-lock.json
package.json
phpunit.xml
vs.code-workspace
webpack.mix.js

webpack.mix.js:

const mix = require('laravel-mix');
const ResolveTypeScriptPlugin = require("resolve-typescript-plugin").default;

mix.webpackConfig({
    module: {
        rules: [
            {
                test: /\.tsx?$/,
                loader: "ts-loader",
                options: { appendTsSuffixTo: [/\.vue$/] },
                exclude: /node_modules/
            }
        ]
    },
    resolve: {
        extensions: ['.js', '.ts', '.vue'],
        alias: {
            '@': __dirname + '/resources'
        },
        fullySpecified: false,
        plugins: [new ResolveTypeScriptPlugin()]
    },
    devtool: 'source-map'
}).sourceMaps();

mix.ts('resources/js/app.js', 'public/js')
    .sass('resources/sass/app.sass', 'public/css').sourceMaps()
    .vue();

mix.extract();

tsconfig.json:

{
    "compilerOptions": {
        "target": "esnext",
        "module": "esnext",
        "strict": true,
        "noImplicitAny": false,
        "importHelpers": true,
        "moduleResolution": "node",
        "esModuleInterop": true,
        "allowSyntheticDefaultImports": true,
        "allowJs": true,
        "checkJs": false,
        "sourceMap": true,
        "baseUrl": ".",
        "paths": {
            "@/*": [
                "resources/*"
            ]
        },
        "lib": [
            "esnext",
            "dom",
            "dom.iterable",
            "scripthost"
        ]
    },
    "files": [
        "resources/js/shims-vue.d.ts"
    ],
    "include": [
        "resources/js/**/*.ts",
        "resources/js/**/*.vue",
    ],
    "exclude": [
        "node_modules",
        ".vscode",
        "app",
        "bootstrap",
        "config",
        "database",
        "public",
        "routes",
        "storage",
        "tests",
        "vendor"
    ]
}

更新:

当我删除 shims-vue.d.ts 时,我立即收到错误消息。

declare module "*.vue" {
    import Vue from "vue";
    export default Vue;
}

这个文件好像只有read/applyed一次,之后就没有了?不确定。

看起来 ts-loader 还不支持 HMR

我安装了 fork-ts-checker-webpack-plugin 并将 webpack.mix.js 更新为:

const mix = require('laravel-mix');
const path = require('path');

const ResolveTypeScriptPlugin = require("resolve-typescript-plugin").default;
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');

mix.webpackConfig({
    module: {
        rules: [
            {
                test: /\.tsx?$/,
                loader: "ts-loader",
                options: {
                    appendTsSuffixTo: [/\.vue$/],
                    transpileOnly: true
                },
                exclude: /node_modules/
            }
        ]
    },
    resolve: {
        extensions: ['.js', '.ts', '.tsx', '.vue'],
        alias: {
            '@': path.resolve(__dirname + '/resources'),
            '@store': path.resolve(__dirname + '/resources/js/store'),
            '@components': path.resolve(__dirname + '/resources/js/components')
        },
        fullySpecified: false,
        plugins: [new ResolveTypeScriptPlugin()]
    },
    plugins: [new ForkTsCheckerWebpackPlugin()],
    devtool: 'source-map'
}).sourceMaps();

mix.ts('resources/js/app.js', 'public/js')
    .sass('resources/sass/app.sass', 'public/css').sourceMaps()
    .vue();

mix.extract();

现在一切正常,但我仍然不确定为什么 watch 也受到影响以及问题出在哪里。

我没有使用 Typescript,但同样的事情发生在我身上,当我 运行 npm run watch/hot 只有在第一次更改代码时成功,然后,你看不到更改,直到您再次 运行 npm run watch/hotnpm run dev。 st运行ge 的事情是我所做的每一个更改都编译成功。

我设法用 git 调试它,发现我正在导入一个名称错误的组件,但在控制台上没有出现错误。 我的组件名称是 WhosApplying.vue

我得到了:

import WhosApplying from "@/whosApplying.vue"

并将其更改为:

import WhosApplying from "@/WhosApplying.vue";

w 而不是 W 中的那个错误让我浪费了时间。

在将打字稿添加到 Inertia / Vue 3 项目后,我 运行 使用 laravel-mix 进入此项目。

使用 Volar(不是 Vuter)

为了修复它,我更改了我的 webpack.config.js 文件:

const path = require('path');

module.exports = {
    resolve: {
        alias: {
            '@': path.resolve('resources/js'),
        },
    },
};

至:

const path = require('path');

module.exports = {
    module: {
        rules: [
            {
                test: /\.tsx?$/,
                loader: "ts-loader",
                options: {
                    appendTsSuffixTo: [/\.vue$/],
                    transpileOnly: true
                },
                exclude: /node_modules/
            }
        ]
    },
    resolve: {
        extensions: ['.js', '.ts', '.tsx', '.vue'],
        alias: {
            '@': path.resolve(__dirname + '/resources/js'),
        },
    },
};