vue3.0修改目录报错

来源:4-3 webpack打包js为umd模块2

慕村8337265

2023-01-05 00:47

老师您好,我新创建VUE3.0,将src改为examples时,报错了,不知如何处理,还麻烦帮看一眼。


error  in ./examples/main.ts


Syntax Error: Error: error while parsing tsconfig.json



ERROR in D:\Wonders\SprintBoot\JaxJava\demov3\tsconfig.json

./examples/main.ts D:\Wonders\SprintBoot\JaxJava\demov3\tsconfig.json

[tsl] ERROR

      TS18003: No inputs were found in config file 'tsconfig.json'. Specified 'include' paths were '["src/**/*.ts","src/**/*.tsx","src/**/*.vue","tests/**/*.ts","tests/**/*.tsx"]' and 'exclude' paths were '["node_modules"]'.


ERROR in ./examples/main.ts

Module build failed (from ./node_modules/ts-loader/index.js):

Error: error while parsing tsconfig.json

    at Object.loader (D:\Wonders\SprintBoot\JaxJava\demov3\node_modules\ts-loader\dist\index.js:17:18)


webpack compiled with 2 errors

ERROR in tsconfig.json

TS18003: No inputs were found in config file 'tsconfig.json'. Specified 'include' paths were '["src/**/*.ts","src/**/*.tsx","src/**/*.vue","tests/**/*.ts","tests/**/*.tsx"]' and 'exclude' paths were '["node_modules"]'.



tsconfig.json

{
  "compilerOptions": {
    "target": "es5",
    "module": "esnext",
    "strict": true,
    "jsx": "preserve",
    "importHelpers": true,
    "moduleResolution": "node",
    "skipLibCheck": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "forceConsistentCasingInFileNames": true,
    "useDefineForClassFields": true,
    "sourceMap": true,
    "baseUrl": ".",
    "types": [
      "webpack-env"
    ],
    "paths": {
      "@/*": [
        "examples/*"
      ]
    },
    "lib": [
      "esnext",
      "dom",
      "dom.iterable",
      "scripthost"
    ]
  },
  "include": [
    "examples/**/*.ts",
    "examples/**/*.tsx",
    "examples/**/*.vue",
    "tests/**/*.ts",
    "tests/**/*.tsx"
  ],
  "exclude": [
    "node_modules"
  ]
}



写回答 关注

1回答

  • dudu0101
    2023-03-16 16:07:30

    是不是文件路劲写的不对啊?

玩转组件库搭建全流程

本课程通过图文+视频的多元教学方式,带大家从零实现一个Vue的组件库。

8553 学习 · 42 问题

查看课程

相似问题