Skip to content
This repository has been archived by the owner on Feb 15, 2022. It is now read-only.

Commit

Permalink
Updated configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenwf committed May 12, 2019
1 parent 6c59028 commit e5a8238
Show file tree
Hide file tree
Showing 6 changed files with 6,319 additions and 4,960 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/*.ts
4 changes: 4 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.exports = {
extends: ['@fesk/standard'],

};
16 changes: 11 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,32 @@
"license": "MIT",
"scripts": {
"build": "lerna run build",
"start": "lerna run build --parallel --stream --concurrency=100 && lerna run start --parallel --stream --concurrency=100",
"start": "lerna run start --parallel --stream --concurrency=100",
"test-types": "typings-tester --dir types-tests",
"test": "jest --verbose --coverage"
"test": "NODE_ENV=test jest --verbose --coverage"
},
"devDependencies": {
"@fesk/eslint-config-standard": "^1.2.0",
"@types/jest": "^23.3.12",
"babel-eslint": "^10.0.1",
"dtslint": "^0.4.2",
"eslint": "^5.15.1",
"eslint-plugin-flowtype": "^3.4.2",
"jest": "^23.6.0",
"jest-fetch-mock": "^2.1.2",
"lerna": "^3.10.7",
"microbundle": "^0.9.0",
"prettier": "^1.15.3",
"ts-jest": "^23.10.5",
"tslib": "^1.9.3",
"tslint": "^5.12.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.4.4",
"typings-tester": "^0.3.2"
},
"private": true,
"workspaces": [
"packages/*",
"examples/*"
"examples/*",
"documentation"
]
}
}
13 changes: 11 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,23 @@
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"traceResolution": true,
"strict": true,
"strictNullChecks": true,
"pretty": true,
"removeComments": true,
"sourceMap": true,
"resolveJsonModule": true,
"composite": true,
"declarationMap": true
"declarationMap": true,
"rootDirs": [
"./packages"
],
"paths": {
"@hyperion-framework/vault": ["packages/vault/src"],
"@hyperion-framework/react-vault": ["packages/react-vault/src"],
"@hyperion-framework/atlas": ["packages/atlas/src"]
}
},
"exclude": [
"node_modules"
Expand All @@ -43,4 +52,4 @@
"path": "./packages/types"
}
]
}
}
6 changes: 6 additions & 0 deletions tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"prefer-template": [true, "allow-single-concat"],
"quotemark": [true, "single", "jsx-double"],
"semicolon": [true, "always"],
"no-bitwise": false,
"trailing-comma": [true, {
"singleline": "never",
"multiline": {
Expand All @@ -47,5 +48,10 @@
"typedef": [true,"parameter", "property-declaration"],
"variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case", "allow-leading-underscore"],
"prettier": [true, { "singleQuote": true, "trailingComma": "es5", "printWidth": 120 }]
},
"linterOptions": {
"exclude": [
"**/*.js"
]
}
}
Loading

0 comments on commit e5a8238

Please sign in to comment.