Skip to content
This repository has been archived by the owner on Jun 7, 2019. It is now read-only.

Commit

Permalink
Merge pull request #787 from LiskHQ/781-typescript_setup
Browse files Browse the repository at this point in the history
Add TypeScript setup - Closes #781
  • Loading branch information
shuse2 committed Oct 4, 2018
2 parents 33f0281 + 4c41c31 commit 98fee2d
Show file tree
Hide file tree
Showing 34 changed files with 8,915 additions and 70,824 deletions.
2 changes: 1 addition & 1 deletion .lintstagedrc.json
@@ -1,3 +1,3 @@
{
"*.js": ["prettier --write", "git add"]
"*.{ts,js}": ["prettier --write", "git add"]
}
338 changes: 228 additions & 110 deletions package-lock.json

Large diffs are not rendered by default.

16 changes: 11 additions & 5 deletions package.json
Expand Up @@ -24,10 +24,12 @@
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna run clean",
"clean:node_modules": "lerna clean",
"format": "lerna run format",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"clean:node_modules": "lerna clean --yes",
"format": "npm run format:root && lerna run format",
"format:root": "prettier types/**/*.ts --write",
"lint": "npm run lint:root && lerna run lint",
"lint:fix": "npm run lint:root -- --fix && lerna run lint:fix",
"lint:root": "tslint -p tsconfig.json types/**/*.ts",
"test": "lerna run test",
"test:node": "lerna run test:node",
"test:browser": "lerna run test:browser",
Expand All @@ -43,6 +45,10 @@
"husky": "0.14.3",
"lerna": "3.2.1",
"lint-staged": "7.2.2",
"prettier": "1.14.2"
"prettier": "1.14.2",
"tslint": "5.11.0",
"tslint-config-prettier": "1.15.0",
"tslint-immutable": "4.7.0",
"typescript": "3.1.1"
}
}

0 comments on commit 98fee2d

Please sign in to comment.