Added lint script

This commit is contained in:
Noah Santschi-Cooney 2018-06-02 22:33:03 +01:00
parent 3db6964f7c
commit b37e66eb81
No known key found for this signature in database
GPG key ID: 3B22282472C8AE48

View file

@ -15,7 +15,8 @@
"compile:client": "tsc -p client/tsconfig.json",
"watch:client": "tsc -w -p client/tsconfig.json",
"compile:server": "cd server && npm run installServer && cd .. && tsc -p server/tsconfig.json",
"watch:server": "cd server && npm run installServer && cd .. && tsc -w -p server/tsconfig.json"
"watch:server": "cd server && npm run installServer && cd .. && tsc -w -p server/tsconfig.json",
"lint": "cd server && npm run lint && cd ../client && npm run tslint"
},
"devDependencies": {
"@types/mocha": "^2.2.42",