我在VS2017中设置了一个Typescript + React项目。我正在使用webpack编译tsx,编译正常。
但是现在当我构建项目时,它由于node_modules\@types\react\index.d.ts
中的一些随机sytax错误而失败(我安装了所有最新版本的打字稿,做出反应)。
错误构建:'>'预期
我有什么方法可以解决这个问题,如何才能正确构建,或者只是忽略此错误并继续?
tsconfig.json看起来像这样:
{
"compilerOptions": {
"outDir": "./dist",
"sourceMap": true,
"noImplicitAny": false,
"module": "commonjs",
"target": "es5",
"jsx": "react",
"moduleResolution": "node",
"skipLibCheck": true,
"skipDefaultLibCheck": true
},
"compileOnSave": false,
"include": [
"./PageModels/src/**/*"
],
"exclude": [
"node_modules",
"wwwroot"
]
}
答案 0 :(得分:0)
更新到Visual Studio的最新版本为我修复了这个问题,构建版本使用的是另一个版本的TypeScript,它是我通过npm安装的版本。