我正在用 React.JS 编写小型项目。每次我运行npm run start
时,它都会记录以下内容:
Starting type checking and linting service...
Using 1 worker with 2048MB memory limit
Watching: /Users/John/Projects/myProject/src
Starting the development server...
ts-loader: Using typescript@2.9.2 and /Users/John/Projects/myProject/tsconfig.json
没有为TypeScript文件指定有效规则
Compiled successfully!
You can now view book-viewer-test in the browser.
Local: http://localhost:3000/
我已突出显示该错误行。一切正常,但恐怕当项目变得更大和更复杂时,它可能会起作用。
这是什么警告/错误?我该如何解决?
这是我的 tsconfig.json 文件:
{
"compilerOptions": {
"baseUrl": "./",
"outDir": "build/dist",
"module": "esnext",
"target": "es5",
"lib": ["es7", "dom"],
"sourceMap": true,
"allowJs": true,
"jsx": "react",
"moduleResolution": "node",
"rootDir": "src",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"experimentalDecorators": true
},
"exclude": [
"node_modules",
"build",
"scripts",
"acceptance-tests",
"webpack",
"jest",
"src/setupTests.ts"
]
}
,并且有 tslint.json 文件:
{
"jsRules": {
"no-empty": true
}
}
谢谢您的建议。
答案 0 :(得分:2)
您唯一适用于JavaScript文件的TSLint规则,不适用于TypeScript。为了清理TypeScript文件,请使用rules
而不是jsRules
。
{
"rules": {
"no-empty": true
}
}
答案 1 :(得分:1)
由于未定义任何规则,因此您应该检查所使用的版本可能不太重要! 无论如何,如果您有反应,npm,节点更新,您应该或多或少有这样的输出:
PS C:\React\my-app> npm run start
> my-app@0.1.0 start C:\React\my-app
> react-scripts start
Starting the development server...
Compiled successfully!
You can now view my-app in the browser.
Local: http://localhost:3000/
On Your Network: http://192.168.1.67:3000/
Note that the development build is not optimized.
To create a production build, use npm run build.
答案 2 :(得分:1)
这看起来像是TSLint错误。您是否安装了TSLint?介意分享您的package.json
吗?您是否有tslint.json
,如果可以,可以分享吗? (使用所需的规则创建tslint.json
可能已经解决了。)