Skip to content

Commit

Permalink
chore: some eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
laendoor committed Jan 3, 2024
1 parent b3ff7dc commit fb8d708
Show file tree
Hide file tree
Showing 3 changed files with 499 additions and 1,194 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"dev": "sh .scripts/start-dev.sh",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint --ext .js,.ts ./",
"lint": "eslint --ext .ts ./",
"release": "dotenv release-it",
"tunnel": "sh .scripts/start-tunnel.sh",
"prepare": "if [ \"$NODE_ENV\" != production ]; then husky install; fi"
Expand Down
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"compilerOptions": {
"target": "ES2017",
"target": "ES2016",
"module": "CommonJS",
"lib": ["ES2021"],
"lib": ["ES2016", "ESNext"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
Expand All @@ -12,5 +12,5 @@
"sourceMap": true
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "./__tests__/**/*.ts"]
"exclude": ["node_modules", "__tests__/**/*.ts"]
}
Loading

0 comments on commit fb8d708

Please sign in to comment.