Commit 0cb00487 authored by Mark Tyneway's avatar Mark Tyneway

fault-detector: clean up package

parent 3fdccd9e
ignores: [
"@babel/eslint-parser",
"@typescript-eslint/parser",
"eslint-plugin-import",
"eslint-plugin-unicorn",
"eslint-plugin-jsdoc",
"eslint-plugin-prefer-arrow",
"eslint-plugin-react",
"@typescript-eslint/eslint-plugin",
"eslint-config-prettier",
"eslint-plugin-prettier",
"chai"
]
...@@ -11,8 +11,8 @@ ...@@ -11,8 +11,8 @@
"scripts": { "scripts": {
"start": "ts-node ./src/service.ts", "start": "ts-node ./src/service.ts",
"test:coverage": "echo 'No tests defined.'", "test:coverage": "echo 'No tests defined.'",
"build": "tsc -p tsconfig.build.json", "build": "tsc -p tsconfig.json",
"clean": "rimraf dist/ ./tsconfig.build.tsbuildinfo", "clean": "rimraf dist/ ./tsconfig.tsbuildinfo",
"lint": "yarn lint:fix && yarn lint:check", "lint": "yarn lint:fix && yarn lint:check",
"pre-commit": "lint-staged", "pre-commit": "lint-staged",
"lint:fix": "yarn lint:check --fix", "lint:fix": "yarn lint:check --fix",
...@@ -33,11 +33,9 @@ ...@@ -33,11 +33,9 @@
}, },
"devDependencies": { "devDependencies": {
"@types/dateformat": "^5.0.0", "@types/dateformat": "^5.0.0",
"@types/node": "^17.0.23",
"dateformat": "^4.5.1", "dateformat": "^4.5.1",
"ethers": "^5.6.8", "ethers": "^5.6.8",
"ts-node": "^10.7.0", "ts-node": "^10.7.0"
"typescript": "^4.6.3"
}, },
"dependencies": { "dependencies": {
"@eth-optimism/common-ts": "^0.2.8", "@eth-optimism/common-ts": "^0.2.8",
......
{
"extends": "../../tsconfig.build.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist"
},
"include": [
"src/**/*"
]
}
{ {
"extends": "../../tsconfig.json", "extends": "../../tsconfig.json",
"compilerOptions": { "compilerOptions": {
"resolveJsonModule": true "outDir": "./dist"
} },
"include": [
"src/**/*"
]
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment