以前も似たような質問をし、その時に
npm run tsc
npm run typedoc
上記2つのコマンドに関しては問題なく実行できたのですが、
npm run <script name>コマンドで再びエラー文の出るものがあったので質問させていただきます。
コマンドプロンプトにて
npm run tslint
と入力すると、
html
1> vaio@1.0.0 tslint C:\Users\VAIO 2> tslint 3 4No files specified. Use --project to lint a project folder. 5npm ERR! code ELIFECYCLE 6npm ERR! errno 1 7npm ERR! vaio@1.0.0 tslint: `tslint` 8npm ERR! Exit status 1 9npm ERR! 10npm ERR! Failed at the vaio@1.0.0 tslint script. 11npm ERR! This is probably not a problem with npm. There is likely additional logging output above. 12 13npm ERR! A complete log of this run can be found in: 14npm ERR! C:\Users\VAIO\AppData\Roaming\npm-cache\_logs\2020-06-06T10_09_55_117Z-debug.log
とエラー文が表示される。
追記:package.json
html
1{ 2 "name": "vaio", 3 "version": "1.0.0", 4 "description": "", 5 "main": "hello_world.js", 6 "scripts": { 7 "test": "echo \"Error: no test specified\" && exit 1", 8 "tsc": "tsc", 9 "tslint": "tslint", 10 "typedoc": "typedoc" 11 }, 12 "author": "", 13 "license": "ISC", 14 "dependencies": { 15 "give-me-a-joke": "^0.3.2", 16 "node-fetch": "^2.6.0", 17 "vue": "^2.6.10", 18 "vue-loader": "^15.9.2" 19 }, 20 "devDependencies": { 21 "tslint": "^6.1.2", 22 "tslint-config-airbnb": "^5.11.2", 23 "typedoc": "^0.17.6", 24 "typescript": "^3.8.3", 25 "webpack": "^4.43.0", 26 "webpack-cli": "^3.3.11", 27 "webpack-dev-server": "^3.11.0" 28 } 29}
回答1件
あなたの回答
tips
プレビュー