Skip to content

Commit

Permalink
Fix eslint error.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrizagidulin committed Dec 31, 2023
1 parent 5b4a42c commit e328cd5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"build": "npm run clear && tsc -d && tsc -p tsconfig.esm.json",
"clear": "rimraf dist/*",
"lint": "ts-standard --fix",
"lint": "ts-standard --fix --project tsconfig.spec.json",
"prepare": "npm run build",
"rebuild": "npm run clear && npm run build",
"test": "npm run lint && npm run test-node && npm run test-karma",
Expand All @@ -20,6 +20,11 @@
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"dependencies": {
},
"resolutions": {
"@typescript-eslint/typescript-estree": "^6.1.6"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@
},
"include": [
"src/**/*",
"test/**/*.spec.ts",
".eslintrc.js",
"karma.conf.js"
],
"exclude": ["node_modules", "dist", "test"]
"exclude": ["node_modules", "dist"]
}

0 comments on commit e328cd5

Please sign in to comment.