2

我正在开发一个反应项目,反应版本 15.4.2 .. 它是一个现有项目,我需要在相同的反应版本上使用它。我也有一个 tsconfig 文件。我尝试使用反应材料 ui:

npm install material-ui@v1.0.0-beta.47 --save

当我尝试启动服务器时,出现以下错误:

[17:00:59] 错误 - 打字稿 -
node_modules\csstype\index.d.ts(14427,101): 错误 TS1005: ')'
预期。[17:00:59] 错误 - 打字稿 -
node_modules\csstype\index.d.ts(14439,89):错误 TS1005:“,”预期。
[17:00:59] 错误 - 打字稿 -
node_modules\csstype\index.d.ts(14451,89):错误 TS1005:“,”预期。
[17:00:59] 错误 - typescript -
node_modules\csstype\index.d.ts(14463,65):错误 TS1005: '(' 预期。
[17:00:59] 错误 - typescript -
node_modules\csstype\index .d.ts(14463,107): 错误 TS1005: ')'
预期。[17:00:59] 错误 - 打字稿 -
node_modules\csstype\index.d.ts(14475,74):错误 TS1005:“,”预期。
[17:00:
node_modules\csstype\index.d.ts(14487,55): 错误 TS1005: '(' 预期。
[17:00:59] 错误 - 打字稿 -
node_modules\csstype\index.d.ts(14487,92): 错误TS1005: ')' 预期。
[17:00:59] 错误 - 打字稿 -
node_modules\csstype\index.d.ts(14499,77):错误 TS1005:“,”预期。
[17:00:59] 错误 - 打字稿 -
node_modules\csstype\index.d.ts(14512,67): 错误 TS1005: '(' 预期。

这是我的 tsconfig.json:

{
  "compilerOptions": {
    "target": "es5",
    "forceConsistentCasingInFileNames": true,
    "module": "commonjs",
    "jsx": "react",
    "declaration": true,
    "sourceMap": true,
    "experimentalDecorators": true,
    "skipLibCheck": true,
    "typeRoots": [
      "./node_modules/@types"
    ],
    "types": [

    ],
    "lib": [
      "es5",
      "es6",
      "dom",
      "es2015.collection"
    ]
  },
  "exclude": [
    "./node_modules/*"
    ] 
}

我尝试了一切,使用排除,或将 es6 添加为库,甚至在 tsconfig 中使用空类型数组。

任何想法?

4

0 回答 0