Ошибка vue-resource TS2345: Аргумент типа import не может быть назначен - PullRequest
0 голосов
/ 12 октября 2019

Я получаю ошибку машинописи при попытке импортировать и использовать ресурс vue в моем проекте vue.


      TS2345: Argument of type 'typeof import("D:/Projects/Hospitality/content/node_modules/vue-resource/types/vue_resource")' is not assignable to parameter of type 'PluginObject<any> | PluginFunction<any>'.
  Type 'typeof import("D:/Projects/Hospitality/content/node_modules/vue-resource/types/vue_resource")' is not assignable to type 'PluginFunction<any>'.
    Type 'typeof import("D:/Projects/Hospitality/content/node_modules/vue-resource/types/vue_resource")' provides no match for the signature '(Vue: VueConstructor<Vue>, options?: any): void'.

Я так долго искал ответ на этот вопрос, я устал от всех решений, которые янашел относящийся к этому вопросу на stackoverflow и github, но ни одно из решений не сработало для меня

мой файл .ts:

import Vue from "vue";
import { Mixin } from "vue-mixin-decorator";
import Router from "vue-router";
import BootstrapVue from "bootstrap-vue";
import VueResource from "vue-resource";
import VeeValidate from "vee-validate";

Vue.use(BootstrapVue);
Vue.use(VueResource);
Vue.use(Router);
Vue.use(VeeValidate);

файл tsconfig:

{
  "compilerOptions": {
    "outDir": "./dist/",
    "sourceMap": true,
    "strict": true,
    "noImplicitReturns": true,
    "noImplicitAny": false,
    "module": "es2015",
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true,
    "moduleResolution": "node",
    "target": "es5",
    "lib": [
      "es2015",
      "dom"
    ],
    "types": [
      "webpack-env"
    ]

  },
  "include": [
    "./**/*"
  ]
}

Конфигурация wekpack:

/// <binding />
"use strict";

module.exports = (env, options) => {


    const path = require('path');
    const webpack = require('webpack');
    const CleanWebpackPlugin = require('clean-webpack-plugin');

    const MiniCssExtractPlugin = require("mini-css-extract-plugin");
    const VueLoader = require("vue-loader");

    let pathsToClean = ['dist/*.*', 'dist/fonts/*.*', 'dist/images/*.*'];

    let cleanOptions = {
        root: __dirname + '/wwwroot/',
        verbose: true,
        dry: false
    };

    return {
        mode: 'development',
        entry: {
            app: './wwwroot/VueApp/Home/app.ts',
            mainCss: './wwwroot/VueApp/CSS/site.scss'
        },
        devtool: 'source-map',
        plugins: [
            new CleanWebpackPlugin(pathsToClean, cleanOptions),
            new webpack.ProvidePlugin({
                Popper: ['popper.js', 'default'],
                moment: 'moment',
                vueResource: 'vue-resource',
                vueRouter: 'vue-router',
                vuex: 'vuex'
            }),
            new VueLoader.VueLoaderPlugin(),
            new MiniCssExtractPlugin({
                filename: "[name].bundle.css"
            })
        ],
        output: {
            publicPath: "/dist/",
            path: path.join(__dirname, '/wwwroot/dist/'),
            filename: '[name].bundle.js'
        },
        module: {
            rules: [
                {
                    test: /\.js$/,
                    loader: 'babel-loader',
                    exclude: /(node_modules)/,
                    query: {
                        presets: [
                            ['env', { targets: { uglify: true } }]
                        ]
                    }
                },
                {
                    test: /\.tsx?$/,
                    exclude: /node_modules/,
                    loader: "ts-loader",
                    options: {
                        appendTsSuffixTo: [/\.vue$/]
                    }
                },
                {
                    test: /\.(sa|sc|c)ss$/,
                    use: [
                        MiniCssExtractPlugin.loader,
                        { loader: 'css-loader', options: { minimize: true, sourceMap: false } },
                        {
                            loader: 'sass-loader', options: { sourceMap: false } }
                    ],
                },
                {
                    test: /\.(svg|png|jpg|gif)$/, 
                    use: {
                        loader: 'url-loader',
                        options: {
                            limit: 8 * 1024,
                            name: './images/[name].[ext]'
                        }
                    }
                },
                {
                    test: /\.(eot|ttf|woff|woff2)$/,
                    use: {
                        loader: 'url-loader',
                        options: {
                            limit: 8 * 1024,
                            name: './fonts/[name].[ext]'
                        }
                    }
                },
                {
                    test: /\.vue$/,
                    loader: 'vue-loader'
                }
            ]
        },
        resolve: {
            alias: {
                vue: 'vue/dist/vue.js'
            },
            extensions: ['.ts', '.js', '.vue', '.json']
        }
    };
};

Мой ресурс vue - версия 1.3.5 и машинописная версия 3.1.1

...