簡體   English   中英

您可能需要一個合適的加載器來處理這種文件類型。 ReactJs

[英]You may need an appropriate loader to handle this file type. ReactJs

在本地系統上運行 ReactJs 應用程序時出現此錯誤。 此應用程序用於構建 chrome 擴展程序。

終端錯誤

../common/src/utils/index.ts 1:23
Module parse failed: Unexpected token (1:23)
You may need an appropriate loader to handle this file type.
> export const delay = (t: number) => new Promise((resolve) => setTimeout(resolve, t));
| 
| export const recurce = (f: Function, timeout: number) => setTimeout(() => f(), timeout);

chrome 控制台上的錯誤

0.chunk.js:78512 ../common/src/utils/states.ts 4:7
Module parse failed: Unexpected token (4:7)
You may need an appropriate loader to handle this file type.
| const UsaStates = require('usa-states').UsaStates;
| 
> export interface IUSAState {
|   abbreviation: string;
|   name: string;
console.<computed> @ 0.chunk.js:78512

包.json

{
  "name": "extention",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "@material-ui/core": "^3.9.2",
    "@types/jest": "24.0.7",
    "@types/node": "11.9.5",
    "@types/react": "16.8.5",
    "@types/react-dom": "16.8.2",
    "axios": "^0.18.0",
    "country-json": "^1.0.8",
    "jwt-decode": "^2.2.0",
    "react": "^16.8.3",
    "react-dom": "^16.8.3",
    "react-jss": "^8.6.1",
    "typeface-roboto": "0.0.54",
    "typescript": "3.3.3333",
    "usa-states": "0.0.5"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "node ./scripts/build-non-split.js",
    "test": "react-scripts test",
    "eject": "react-scripts eject",
    "web:build": "env-cmd --use-shell 'web-ext build'",
    "preweb:build": "npm run build"
  },
  "eslintConfig": {
    "extends": "react-app"
  },
  "browserslist": [
    ">0.2%",
    "not dead",
    "not ie <= 11",
    "not op_mini all"
  ],
  "devDependencies": {
    "@types/chrome": "0.0.86",
    "@types/jwt-decode": "^2.2.1",
    "@types/react-jss": "^8.6.3",
    "env-cmd": "^10.0.1",
    "react-scripts": "^2.1.5",
    "rewire": "^4.0.1",
    "web-ext": "^4.0.0"
  }
}

配置文件

{
  "compilerOptions": {
    "target": "es5",
    "lib": [
      "dom",
      "dom.iterable",
      "esnext"
    ],
    "allowJs": true,
    "skipLibCheck": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "module": "esnext",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "noEmit": true,
    "jsx": "preserve"
  },
  "include": [
    "src"
  ]
}

注意:我找到了許多與此錯誤相關的答案,但似乎都與babel有關,但babel不在我的 package.json 中

您的瀏覽器正在嘗試讀取打字稿文件,而瀏覽器不讀取打字稿。 它需要被轉換為 JavaScript。 package.json 中的腳本會為您執行此操作。

沒有看到什么build-non-split.js我會說嘗試使用默認的 react-scripts 構建:

node react-scripts build

然后通過生成的/dist/index.html文件進入項目。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM